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.

Replace HTML tags using jsoup

Here is my code String html = "<font>fsdfs<font>dfsdf</font>dasdasd</font&…

java jsoup
parsing/extracting a HTML Table, Website in Java

I want to parse the contents of this HTML table : Here is the full website with source code: http://www.…

html html-parsing jsoup html-table html-tableextract
Jsoup get element in value=" "

I want to find the element "buddyname" and get the element of value= "" in a HTML file which i put …

java android regex string jsoup
OpenHTMLToPDF: Embed a custom font into PDF created out of HTML

I create a PDF from HTML with Jsoup and OpenHTMLToPDF. I have to use a different font in my PDF …

java fonts jsoup pdfbox openhtmltopdf
jsoup: How to select the parent nodes, which have children satisfying a condition

Here's the part of the HTML (simplified for the question): <a href="/auctions?id=4672" class="auction sec"> <…

html parsing jsoup parent children
Add custom css to html code with jsoup

I'm working on an Android app, which loads a HTML page and shows it in a webview. The problem is …

java jquery android css jsoup
How to remove hard spaces with Jsoup?

I'm trying to remove hard spaces (from &nbsp; entities in the HTML). I can't remove it with .trim() or .…

java jsoup
jsoup second element instead of first()

I have translated the PHP Simple HTML DOM query: $article->find('td[id$=tdDescription] div a', 1)->plaintext; …

java php jsoup simple-html-dom
Jsoup - extracting text

I need to extract text from a node like this: <div> Some text <b>with tags&…

java iteration jsoup text-extraction
jsoup query multiple selector

I have the following html: <div> <h1> <a>1</a> </h1> &…

jsoup