自学内容网 自学内容网

使用java从提前pdf中的文字

引入依赖

        <dependency>
            <groupId>org.apache.pdfbox</groupId>
            <artifactId>pdfbox</artifactId>
            <version>2.0.28</version>
        </dependency>

样例代码

    public static String pdf2text(InputStream inputStream) {
        String text = "";
        try (PDDocument document = PDDocument.load(inputStream)) {
            PDFTextStripper stripper = new PDFTextStripper();
            text = stripper.getText(document);
        } catch (IOException e) {
            log.error("解析PDF文件失败!", e);
        }
        return text;
    }


原文地址:https://blog.csdn.net/abments/article/details/143436895

免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!