作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在寻找一个简单的 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/
我是一名优秀的程序员,十分优秀!