I want to read a pdf file using Java/Android that is exist in my SD card.I imported the itextpdf5.1.1.jar file in the eclipse IDE.I am able to create a new file from an existing one.Below is my code,

public void readPdfFile(String pFilename){

    try{
        Document document = null;
        document = new Document();
    PdfWriter writer = PdfWriter.getInstance(document,
            new FileOutputStream(OUTPUTFILE));
    document.open();
    PdfReader reader = new PdfReader(pFilename);
    int n = reader.getNumberOfPages();
    PdfImportedPage page;
    // Go through all pages
    for (int i = 1; i <= n; i++) {
        // Only page number 2 will be included
        if (i == 1) {
            page = writer.getImportedPage(reader, i);
            Image instance = Image.getInstance(page);
            document.add(instance);
        }
    }
    }

    catch (DocumentException e) {
        // TODO: handle exception
        System.out.println("Doc Exception"+ e);
    }
    catch (IOException io) {
        // TODO: handle exception
        System.out.println("IO Exception"+ io);
    }
}

But I want to read the file with out creating a new pdf file in my sd card.

And please guide me how to create a pdf reader application in Android that reads the pdf file and also have the functionality that when enter a page number it goes to that page. Please help ,if any one knows in this regards. Advancly thanks...

link|improve this question

73% accept rate
feedback

2 Answers

It is impossible to replace an existing PDF. We can able to write or manipulate anything in our PDF but it could not be replaced with the original. While using iText we can make change and save it in a new file and not in a original file, this information is available in the iText official website.

link|improve this answer
feedback

u can use awt tools like jPanel in java with iText to read a pdf file .In android there is a pdf viewer for read or viewing pdf files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.