我有一个内容为iframe的网页。我想将iframe设置为仅在指定的溢出高度滚动。这可能吗?
答案 0 :(得分:-1)
File file = new File("E:/kamlesh/PdfBox/field name test.pdf");
PDDocument doc = PDDocument.load(file);
PDAcroForm form = doc.getDocumentCatalog().getAcroForm();
List<PDField> fields = form.getFields();
for (int i=0; i<fields.size(); i++) {
PDField f = fields.get(i);
System.out.println(f.getFullyQualifiedName());
}