使用Java和IText,如何从PDF中提取AcroForm字段名称?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Java和IText,如何从PDF中提取AcroForm字段名称?相关的知识,希望对你有一定的参考价值。
我正在寻找一个简单的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和IText,如何从PDF中提取AcroForm字段名称?的主要内容,如果未能解决你的问题,请参考以下文章
iText7 & C# 从存储在 MSSQL DB 中的 PDF 中提取页面
iText PDF;如何使用 Java 将 jpeg2000 转换为 jpg