I wanted to use boilerpipe so I added all .jars to the build path for my project. I did
import de.l3s.boilerpipe.extractors.DefaultExtractor;
and in one of my methods
return(DefaultExtractor.INSTANCE.getText(someURL);
Eclipse is telling me that the import cannot be resolved even though I see DefaultExtractor.java under 'Referenced Libraries'. Someone suggested I clean all of my projects. I did, and now when I try to run I get an error saying:
Error: Could not find or load main class XXXX
How do I make it so I am able to run my code again? And once I do, how can I get boilerpipe to work? Thank you.