I'm looking for a good Java api to do web scraping. I tried WEB-Harvest api http://web-harvest.sourceforge.net/usage.php but I think it's a bit clunky. Any other suggestions?

link|improve this question
2  
"Any other suggestions?" Just one. Note that when searching for info. on this topic, that word is 'scraping' (one 'p'), not 'scrapping' (which is a separate word that means 'fighting' or 'dumping'). – Andrew Thompson Mar 9 '11 at 18:53
Possible duplicate of How to "scan" a website (or page) for info, and bring it into my program?. See also this recent question for another example. Note that you're basically asking "What is the best HTML parser in Java?". – BalusC Mar 9 '11 at 18:58
feedback

2 Answers

I've used httpunit to do just this task in production.

link|improve this answer
feedback

http://hc.apache.org/httpcomponents-client-ga/

(Maven Dependency)

<dependency>
  <groupId>commons-httpclient</groupId> 
  <artifactId>commons-httpclient</artifactId> 
  <version>3.1</version> 
</dependency>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.