Hi...Trying to open a PDF with the following code...
File file = null;
Document doc = null;
try
{ file = new File(filename); }
catch (Exception ex)
{
System.out.println("Problem opening the file:\n" + ex + "\n" + ex.getMessage());
System.exit(1);
}
and getting a FileFormatException that says, "'xref' keyword...
2009-10-19 16:33:13 UTC in PDF Clown