Hi again,

Thank you for your help. I have set the start and end page, but it makes no difference.

Extract content pdf document length -> 0



PDDocument doc = new PDDocument();
    try {
        doc.load(new File("Shaffer.pdf"));
        String docText=null;
         try {
           PDFTextStripper stripper=new PDFTextStripper();
           stripper.setStartPage(1);
           stripper.setEndPage(2);
           docText=stripper.getText(doc);
System.out.println("Extract content pdf document length -> " + docText.length());
         }


Many thanks,


Michel


On 25/04/2015 19:30, Gilad Denneboom wrote:
Try setting the start and end pages to strip...

On Sat, Apr 25, 2015 at 4:25 AM, Michel de Lange <
[email protected]> wrote:



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to