I need to parse/read a lot of HTML webpages (100+) for specific content (a few lines of text that is almost the same).

I used scanner objects with reg. expressions and jsoup with its html parser.

Both methods are slow and with jsoup I get the following error: java.net.SocketTimeoutException: Read timed out (Multiple computers with different connections)

Is there anything better?

EDIT:

Now that I've gotten jsoup to work, I think a better question is how do I speed it up?

link|improve this question

1  
Jsoup supports both DOM traversal and [CSS] selectors, no? (Why use regular expressions? :-/) – pst Jul 14 '11 at 3:13
feedback

3 Answers

up vote 3 down vote accepted

Did you try lengthening the timeout on JSoup? It's only 3 seconds by default, I believe. See e.g. this.

link|improve this answer
Thanks. I got the jsoup code working. Its has a running time of 2 minutes. – samwise Jul 14 '11 at 3:19
feedback

I will suggest Nutch, an open source web-search solution that includes support for HTML parsing. It's a very mature library. It uses Lucene under the hood and I find it to be a very reliable crawler.

link|improve this answer
Jericho is a good alternative too. I've used Nutch and Jericho, but have no experience with JSoup so can't comment on why it would be taking so long. – jkraybill Jul 14 '11 at 4:49
feedback

A great skill to learn would be xpath. It would be perfect for that job! I just started learning it myself for automation testing. If you have questions, shoot me a message. I'd be glad to help you out, even though I'm not an expert.

Here's a nice link since you are interested in Java: http://www.ibm.com/developerworks/library/x-javaxpathapi/index.html

xpath is also a good thing to know when you're not using Java, so that's why I would choose that route.

link|improve this answer
Except ... HTML is not XML. I suspect this post wouldn't have received a down-vote (not mine) if a link to a library that exposed HTML via XPath was also included. (Such tools, which are capable of treating HTML "as" an XML DOM, are definitely worth talking about.) – pst Jul 14 '11 at 2:58
XPath is for XML, and won't work on any HTML that isn't XML compatible. – Ed Staub Jul 14 '11 at 2:58
it's used for both HTML and XML. tech-read.com/2011/03/09/extract-html-content-using-xpath – MacGyver Jul 14 '11 at 3:02
@Mr. Wanta Yes, so what Java library parses HTML (not just XML) and exposes XPath over it? :) This answer isn't bad, but it is missing some important pieces of the puzzle. (Note that jsoup, which the question is tagged, supports CSS selectors, but not XPath -- it looks like this feature is requested) – pst Jul 14 '11 at 3:09
Here's an example of use XOM and TagSoup to find elements in HTML - stackoverflow.com/questions/773340/… – laz Jul 14 '11 at 3:19
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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