-
Reading/Writing PDF files through JAVA/J2EE (2 messages)
- Posted by: Nitin Ginotra
- Posted on: September 06 2006 01:51 EDT
I am working on a project that involves reading a pdf file, which contains text as well other embedded pdf files. After reading this file , i need to create a new pdf file, that contains the data in text format read from the above pdf file. Please help on this.Threaded Messages (2)
- use free PDF library by oleg petrov on September 06 2006 03:27 EDT
- refer this by Vijay Murugan on September 07 2006 05:22 EDT
-
use free PDF library[ Go to top ]
- Posted by: oleg petrov
- Posted on: September 06 2006 03:27 EDT
- in response to Nitin Ginotra
Hello! use this iText free PDF library: http://www.lowagie.com/iText/ Many other answers to such Java questions I usually find here: http://JavaFAQ.nu Oleg -
refer this[ Go to top ]
- Posted by: Vijay Murugan
- Posted on: September 07 2006 05:22 EDT
- in response to Nitin Ginotra
hi, Plz visit: http://itextdocs.lowagie.com/tutorial/ in that some examples are listed. To make multiple pdf files i did this below changes. PdfWriter writer = PdfWriter.getInstance(document,new FileOutputStream(varientname+"constantname.pdf")); writer.setViewerPreferences(PdfWriter.PageModeUseOC); bye Thank's & Regards Vijay.S