我有創建pdf文檔的代碼,它從它獲取acroform字段並將它們保存到向量中。如何將向量中的元素轉換爲ArrayList
PDFDocument pdfDocument = new PDFDocument(pdfPath, null);
AcroForm acroForm = pdfDocument.getAcroForm();
Vector fieldList = acroForm.getFieldList();
System.out.println("fieldList: " + fieldList);
SYSOUT返回此:
[[Field FullName=amtApprvd_1_2 Type=Tx], [Field FullName=percentIrateInit_1_2 Type=Tx], [Field FullName=borrowerName Type=Tx]]
現在我想在ArrayList中保存字段名稱(例如,amtApprvd_1_2)。我怎麼能做到這一點?
我能夠使用枚舉和迭代器,但我只能將它們保存爲對象,它具有字段名稱和類型。但我只想在ArrayList中使用字段名稱。請指教。
爲AcroFormAPI是com.qoppa.pdf.form
AcroForm的API來自com.qoppa.pdf.form。我會嘗試你的版本。謝謝。 – Foxy
謝謝安德烈亞斯! – Foxy