Hello Sir/Madam, This is Tejas Patel, Sr. Software Developer from Techworld Softwares. I've implemented PDFBOX .NET Library in my project to extract text from PDF File and I'm glad to
inform you that Its working good except sometimes when It throws exception like 'The type initializer for 'java.io.File' threw an exception.' when I try to load a PDF document. I've add reference to 3 .dll files for PDF text extraction operation. They are namely, 1) acPDFCreator.Net.dll 2) acPDFCreatorLib.Net.dll 3) PDFBox-0.7.2.dll Code that I've Written is as follows. Dim OPDFDoc As PDDocument = Nothing Dim TextStripper As PDFTextStripper = Nothing Dim AllText As String = "" OPDFDoc = PDDocument.load(inFileName) --> Throws Exception on this line TextStripper = New PDFTextStripper AllText = TextStripper.getText(OPDFDoc) So Can you please Let me know that cause of this exception as soon as possible ? Thank you. Regards, Tejas Patel [email protected]
