Re: How to set up Eclipse to work with PDFBox

2018-04-11 Thread David Luu
FYI, if one uses Maven with Eclipse, then adding the PDFBox dependency should also do the trick https://pdfbox.apache.org/2.0/dependencies.html#include-dependencies-using-maven On Wed, Apr 11, 2018 at 11:11 AM, Diego Azevedo wrote: > Hello Marcel, > > Using PDFBox shouldn't be different from us

Re: How to set up Eclipse to work with PDFBox

2018-04-11 Thread Diego Azevedo
Hello Marcel, Using PDFBox shouldn't be different from using any other java library. this link should help: https://stackoverflow.com/questions/3280353/how-to-import-a-jar-in-eclipse On Wed, Apr 11, 2018 at 11:47 AM, Gilad Denneboom wrote: > I do that and it works just fine... What version of

Re: How to set up Eclipse to work with PDFBox

2018-04-11 Thread Gilad Denneboom
I do that and it works just fine... What version of the jar file are you using? On Wed, Apr 11, 2018 at 3:28 PM, Marcel Müller wrote: > Hello, > > I need to extract text from a PDF file in my project. > How do I set up Eclipse to be able to work with PDFBox? > > I tried importing external jar fi

How to set up Eclipse to work with PDFBox

2018-04-11 Thread Marcel Müller
Hello, I need to extract text from a PDF file in my project. How do I set up Eclipse to be able to work with PDFBox? I tried importing external jar file, however I am getting Source not found error on line that utilizes PDFbox. Thank you