我想删除所有不包含文本的 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");
}
}
}
}
这并没有带来任何结果