-3

我想删除所有不包含文本的 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");
                }
            }


        }


}

这并没有带来任何结果

4

1 回答 1

1

String objects can not be compared using == in Java.

Please us the String.equals() method.

String s1 = "dat1";
String s2 = "dat2";

if(s1.equals(s2))
    //dostuff
else
    //dootherstuff
于 2013-11-12T18:33:32.313 回答