oneat
oneat

Reputation: 10994

Changing HTML into DOM

Is in Java (sic!) any function which could change HTML placed in string into DOM Tree?

Upvotes: 1

Views: 377

Answers (1)

Jonathan Hedley
Jonathan Hedley

Reputation: 10522

Plug: Have a look at jsoup (an open source Java HTML library I just released). Gives a CSS and jquery-like syntax to getting at the data, in addition to the tradition DOM methods.

Document doc = Jsoup.parse(html);
Elements links = doc.select("a[href]");

Upvotes: 1

Related Questions