gpt4 book ai didi

java - 使用 Java 和 IText,如何从 PDF 中提取 AcroForm 字段名称?

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

我正在寻找一个简单的 API 示例,它读取 PDF 文件/模板作为输入,并迭代 PDF 表单中定义的字段(我认为它称为 AcroForm)

最佳答案

好的,我找到了解决方案

public static void scanFields(String path) throws IOException {
PdfReader pdfReader = new PdfReader(path);
AcroFields acroFields = pdfReader.getAcroFields();
HashMap<String,AcroFields.Item> fields = acroFields.getFields();
Set<Entry<String, Item>> entrySet = fields.entrySet();
for (Entry<String, Item> entry : entrySet) {
String key = entry.getKey();
}
}

关于java - 使用 Java 和 IText,如何从 PDF 中提取 AcroForm 字段名称?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3093093/

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