Hi, I am having problems with pdfbox 1.2.1. I want to extract text from a pdf file but my program throws an exception, the exception message is:
java.io.IOException: Error: Expected operator 'ID' actual='IA'
My test class is:
PDDocument doc = PDDocument.load("test.pdf");
PDFtextStripper strip = new PDFTextStripper();
String text = strip.getText(doc);
If I change the test.pdf for another file it works, but I must extract
the text of "test.pdf"
Thanks for your help.

