テキストを含まないすべての PDF ファイルを消去したい。PdfBox を使用しようとしました。メソッドpdftoText
は pdf を文字列に変換します。
public static void main(String[] args) throws FileNotFoundException, InterruptedException {
String pdfText = PDFTextParser.pdftoText("xxx.pdf"); //files[i]);
if (pdfText == "") {
File toBeDeletedFile = new File(location+"xxx.pdf");
if (toBeDeletedFile.delete()) {
System.out.println("success");
}
else {
System.out.println("still there");
}
}
}
}
これでは結果が出ませんでした