我看过其他问题,但没有人帮助我。 我的代码只打印2个新行,但没有任何内容。该文件有东西要读。我哪里错了?如果我将结束页码设置为包含更多页面(文档具有),则只打印更多空白行,每个附加页面各一行。
public static void ReadPDF() throws IOException{
COSDocument COSDoc = null;
PDDocument PDDoc = null;
File file = new File("Comparatives 07-11 through 06-14 1st group.pdf");
PDFParser parser = new PDFParser(new FileInputStream(file));
parser.parse();
COSDoc = parser.getDocument();
PDFTextStripper stripper = new PDFTextStripper();
PDDoc = new PDDocument(COSDoc);
stripper.setStartPage(1);
stripper.setEndPage(1);
String st = stripper.getText(PDDoc);
System.out.println(st);
}