Top "Jsoup" questions

Jsoup is a Java HTML parser for extracting and manipulating HTML data, using the best of DOM, CSS, and jQuery-like methods.

Jsoup: get all heading tags

I'm trying to parse an html document with Jsoup to get all heading tags. In addition I need to group …

java jsoup
How to search for comments ("<!-- -->") using Jsoup?

I would like to remove those tags with their content from source HTML.

java jsoup
Is there anything faster than Jsoup for HTML scraping?

So I'm building an app that displays an imageboard from a website I go to in a more user-friendly interface. …

android jsoup
Jsoup how to select a tag with multiple attributes

I have a table tag <table width="100%" align="center"/> And so far Jsoup provides Document document =Jsoup.parse(…

html parsing jsoup
Access file inside WebContent from servlet

I trying to access the html files inside the WebContent/alerts folder using its relative path from servlet. But i …

java servlets jsoup servlet-3.0 web-application-project
java.net.SocketTimeoutException: Read timed out error when trying to read from table

I'm working on coding a program that will go and retrieve the price of a person from a table on …

java jsoup socket-timeout-exception
Jsoup - getting class element with whitespace in name

I am trying to grab the value of this class by tag "c2 l n". <td class="c2 l …

java jsoup
Parsing the html meta tag with jsoup library

Just started exploring the Jsoup library as i will use it for one of my projects. I tried googling but …

java html html-parsing jsoup
Jsoup set accept-header request doesn't work

I'm trying to parse data from tempobet.com in english format. The thing is when I use google rest client …

java html-parsing jsoup request-headers
Use jsoup to parse XML - prevent jsoup from "cleaning" <link> tags

In most case, I have no problem with using jsoup to parse XML. However, if there are <link> …

java xml-parsing jsoup link-tag