Results 1 to 2 of 2
-
06-01-2011, 10:18 AM #1Right Off the Assembly Line
- Join Date
- Dec 2010
- Posts
- 12
Java Tutorial 1: Read a pdf file in Java using iText library
Hi,
This is a basic tutorial in java, that shows how to read a pdf file. For this we use a library called iText . Using iText library, we can perform various pdf operations that it supports.
In this section , we are dealing with calculating the no. of pages & extracting the contents of each individual page.The steps are given below :
Add the iText library, by adding iText.jar to the lib folder of the project.
Use the following code to extract the content
Note: This program extracts only the text part and not the images.Code:PdfReader reader = new PdfReader(INPUTFILE); int n = reader.getNumberOfPages(); String str=PdfTextExtractor.getTextFromPage(reader, 2); //Extracting the content from a particular page. System.out.println(str);
Hope this program helps you start with basic pdf editing. Do revert back for queriesLast edited by thomas6188; 07-01-2011 at 07:29 PM.
-
07-10-2012, 08:10 PM #2Right Off the Assembly Line
- Join Date
- Oct 2012
- Posts
- 1
Re: Java Tutorial 1: Read a pdf file in Java using iText library
You can also refer to the tutorial series here covering different features of iText:
PDF Generation in Java: iText Tutorial - QuicklyJava
LinkBacks (?)
-
09-11-2012, 02:35 PM
-
23-07-2012, 07:52 PM
-
12-06-2012, 04:57 PM
-
10-06-2012, 08:07 PM
-
30-04-2012, 05:00 AM
-
17-04-2012, 02:03 PM
-
01-02-2012, 06:18 PM
-
16-11-2011, 11:03 PM
-
LearnYourTopic
Refback This thread16-11-2011, 09:28 AM -
05-05-2011, 11:08 AM
Similar Threads
-
Small trick: Read any non-language supported site on your java mobile.
By Amir.php in forum TutorialsReplies: 2Last Post: 31-10-2009, 07:00 PM -
How to run a simple java program on a Java ready phone?
By thewisecrab in forum ProgrammingReplies: 7Last Post: 31-08-2009, 08:53 PM -
Java programming..how can I distribute java program....?
By Manojap in forum ProgrammingReplies: 5Last Post: 16-05-2009, 02:46 PM -
how to convert .class file to .java file???
By garv84 in forum ProgrammingReplies: 4Last Post: 11-04-2008, 02:41 PM -
plz tell me an online Java Tutorial
By iinfi in forum QnA (read only)Replies: 4Last Post: 12-09-2005, 10:09 AM


LinkBack URL
About LinkBacks
Reply With Quote

Bookmarks