Hi: Ok... I have purchased the second edition of the book, looked at the examples in chapter 13. However, I'm still unable to get the fields and values from a already completed form. I'm not filling it out, I'm not placing movies, fonts or anything else in the form just need to extract the data from the already completed fields from a dynamic form saved as 9.x.... Below is the code I used to extract from older forms that are not dynamic.
PdfReader reader = new PdfReader(inpdffile); char c = reader.getPdfVersion(); AcroFields readerfields = reader.getAcroFields(); hashtable.putAll(readerfields.getFields()); Enumeration keys = hashtable.keys(); while (keys.hasMoreElements()) { String val=null; Object aKey = keys.nextElement(); val = ValidXmlString(aKey.toString()); String str = (String)readerfields.getField(aKey.toString()); rootEle.setAttribute(val, str); } // while -----Original Message----- From: Bruno Lowagie [mailto:br...@lowagie.com] Sent: Monday, April 12, 2010 12:29 PM To: Post all your questions about iText here Subject: Re: [iText-questions] HELP NEEDED: PDF V9.x Dynamic Form Miller, Billy C CTR USAF AFSOC 623 AOC/CSDI wrote: > Please assist... I tried purchasing the book... getting the following > error... After another mail to support, the problem was solved. It's now possible again to buy the book. Recently a new chapter was added: chapter 13. In the meantime, I've finished writing ALL chapters, and I'm now reading and revising the book, based on the suggestions of the official reviewers and the remarks posted on this list. I hope the revised chapters will be made available through MEAP soon. I'll keep you posted! best regards, Bruno ------------------------------------------------------------------------ ------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ iText-questions mailing list iText-questions@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.itextpdf.com/book/ Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/ ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ iText-questions mailing list iText-questions@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/itext-questions Buy the iText book: http://www.itextpdf.com/book/ Check the site with examples before you ask questions: http://www.1t3xt.info/examples/ You can also search the keywords list: http://1t3xt.info/tutorials/keywords/