vote up 0 vote down star

Sorry if this is too simple, but I simply couldn't find a tutorial nor the documentation of the Java version of TagSoup.

Basically I want to download an HTML webpage from the internet and turn it into XHTML, contained in a string. How can I do this with TagSoup?

Thanks!

flag

79% accept rate

1 Answer

vote up 3 vote down check

Something like this:

wget -O - example.com/bad.html | java -jar tagsoup.jar

Or, from Java:

To parse HTML:

  • Create an instance of org.ccil.cowan.tagsoup.Parser
  • Provide your own SAX2 ContentHandler
  • Provide an InputSource referring to the HTML
  • And parse()!
link|flag
Precisely this! I want to get this value into a string in Java. – konr Oct 19 at 15:08
@konr, if this answer is precisely what you wanted, you might want to accept/up-vote it =) – ricebowl Oct 19 at 15:12

Your Answer

Get an OpenID
or

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