从 itext 读取 pdf

发布于 2024-12-06 10:53:22 字数 709 浏览 0 评论 0原文

我使用java web应用程序中的文本制作了一个pdf表格。

生成的 PDF 是:

性别 |第 1 栏 |第 2 栏 |第 3 栏


男性 | 1845 | 1845 645 | 645 254

女 | 214 | 214 457 | 457 142

在阅读 pdf 时,我使用了以下代码:

ArrayList allrows = firstable.getRows();

    for (PdfPRow currentrow:allrows) {
        PdfPCell[] allcells = currentrow.getCells(); 
        System.out.println("CurrentRow ->"+currentrow.getCells());
        for(PdfPCell currentcell : allcells){
            ArrayList<Element> element = (ArrayList<Element>) currentcell.getCompositeElements();
            System.out.println("Element->"+element.toString());
        }
    }

如何从 pdf 列读取文本并传递给 int 变量?

I had made a table in pdf using text in java web application.

PDF Generated is:

Gender | Column 1 | Column 2 | Column 3


Male | 1845 | 645 | 254

Female | 214 | 457 | 142

On reading pdf i used following code:

ArrayList allrows = firstable.getRows();

    for (PdfPRow currentrow:allrows) {
        PdfPCell[] allcells = currentrow.getCells(); 
        System.out.println("CurrentRow ->"+currentrow.getCells());
        for(PdfPCell currentcell : allcells){
            ArrayList<Element> element = (ArrayList<Element>) currentcell.getCompositeElements();
            System.out.println("Element->"+element.toString());
        }
    }

How to read text from pdf columns and pass to int variables?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

城歌 2024-12-13 10:53:22

为什么不将pdf的Column生成为字段,这样阅读会更容易

Why don't you generate the Column of the pdf as fields, so that reading will be much easier

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文