团队,
作为要求的一部分,我必须验证拼合的pdf。该pdf文件具有复选框。我使用Apache PDFBOX库读取此PDF的内容。它仅读取文本,而不标识复选框。请在附件中找到我正在使用带有复选框的Flat PDF的类似pdf文件的屏幕截图:
能给我提供任何一种方法来识别和验证这些复选框吗?
PDFTextStripper stripper = new PDFTextStripper() ;
PDDocument document = new PDDocument() ;
document = PDDocument.load(new File("D:\\test.pdf"));
stripper.setStartPage(1);
stripper.setEndPage(1);
stripper.setSortByPosition(true);
pdfTextContent = stripper.getText(document);
System.out.println(pdfTextContent);