gpt4 book ai didi

java - 如何使用 Java 读取 pdf 表单字段?

转载 作者:搜寻专家 更新时间:2023-11-01 02:33:34 26 4
gpt4 key购买 nike

我有一个要求,用户要在 pdf 表单上填写很多字段(文本字段、复选框、单选按钮),然后他们会寄给我们。我需要阅读 pdf 表单上的每个字段并插入到 oracle 表中。

Edit1: 我正在尝试使用以下代码,它会生成 pdf,但是当我双击时它会显示“格式无效”。怎么了?

import java.io.FileOutputStream;
import java.io.IOException;

import com.itextpdf.text.*;
import com.itextpdf.text.pdf.PdfWriter;

public class pdfGentest{
public static void main(String[] args) {

Document document = new Document();

try {

PdfWriter.getInstance(document, new FileOutputStream("c:\\HelloWorld.pdf"));
document.open();
document.add(new Paragraph("Hello World"));
}
catch (DocumentException de) {
System.err.println(de.getMessage());
} catch (IOException ioe) {
System.err.println(ioe.getMessage());
}
}
}

已修复: 由于我没有关闭文档..添加 document.close();解决了问题

最佳答案

您可以使用 IText 库来做到这一点。链接 => http://itextpdf.com/

遗憾的是我没有 Java 代码示例,因为我使用的是用于 C#.NET 的 iTextSharp 库,但非常简单。

您可能想查看 itextpdf.com/book/examples.php 中的示例。另请查看以下链接以获取有关读取字段值的一些示例, http://itext-general.2136553.n4.nabble.com/Problem-Reading-Interactive-Form-Values-Acro-Fields-from-PDF-using-iText-td2171900.html

关于java - 如何使用 Java 读取 pdf 表单字段?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3673181/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com