如何识别平面pdf中的复选框?

时间:2019-02-27 06:51:58

标签: pdf checkbox pdfbox flat

团队,

作为要求的一部分,我必须验证拼合的pdf。该pdf文件具有复选框。我使用Apache PDFBOX库读取此PDF的内容。它仅读取文本,而不标识复选框。请在附件中找到我正在使用带有复选框的Flat PDF的类似pdf文件的屏幕截图:

enter image description here

能给我提供任何一种方法来识别和验证这些复选框吗?

使用的代码段

        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);

0 个答案:

没有答案