PDFBox IOException:文件结束,预期行

ste*_*vek 5 java selenium pdfbox selenium-chromedriver selenium-webdriver

我目前正在尝试使用 PDFBox 和 Selenium 从已经上传和通过链接访问的 PDF 中获取文本。我用它作为来源:http : //www.seleniumeasy.com/selenium-tutorials/how-to-extract-pdf-text-and-verify-using-selenium-webdriver-java

public String function(String pdf_url) {
    PDFTextStripper pdfStripper = null;
    PDDocument pDoc;
    COSDocument cDoc;
    String parsedText = "";
    try {
        URL url = new URL(pdf_url);
        BufferedInputStream file = new BufferedInputStream(url.openStream());
        PDFParser parser = new PDFParser(file);
        parser.parse();
        cDoc = parser.getDocument();
        pdfStripper = new PDFTextStripper();
        pdfStripper.setStartPage(1);
        pdfStripper.setEndPage(1);

        pDoc = new PDDocument(cDoc);
        parsedText = pdfStripper.getText(pDoc);

    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    return parsedText;
}

Error: End-of-File expected line
at org.apache.pdfbox.pdfparser.BaseParser.readLine(BaseParser.java:1519)
at org.apache.pdfbox.pdfparser.PDFParser.parseHeader(PDFParser.java:372)
at org.apache.pdfbox.pdfparser.PDFParser.parse(PDFParser.java:186)
at scripts.Script.grabPDF_Text(Script.java:94)
at scripts.Script.main(Script.java:817)
Run Code Online (Sandbox Code Playgroud)

为什么我收到这个错误?

Pra*_*any 3

这是您要求使用 PDFURL 共享的示例

string PDFURL = "https://www.adobe.com/support/products/enterprise/knowledgecenter/media/c4611_sample_explain.pdf";
function(PDFURL1);

public String function(String pdf_url)
{
 //Exact same code as yours
}
Run Code Online (Sandbox Code Playgroud)

为了使用 PDF 作为本地文件,URL 和 BufferedInputStream 需要替换为

 File file = new File(pdf_url);
 PDFParser parser = new PDFParser(new FileInputStream(file));
Run Code Online (Sandbox Code Playgroud)

希望这可以帮助

  • `new PDFParser()` 已过时。使用“PDDocument.load()”。 (4认同)