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.

How to "scan" a website (or page) for info, and bring it into my program?

Well, I'm pretty much trying to figure out how to pull information from a webpage, and bring it into my …

java html web-scraping jsoup
How to parse HTML table using jsoup?

I am trying to parse HTML using jsoup. This is my first time working with jsoup and I read some …

java html parsing jsoup
How do I preserve line breaks when using jsoup to convert html to plain text?

I have the following code: public class NewClass { public String noTags(String str){ return Jsoup.parse(str).text(); } public static …

java jsoup
Jsoup SocketTimeoutException: Read timed out

I get a SocketTimeoutException when I try to parse a lot of HTML documents using Jsoup. For example, I got …

java jsoup
jsoup posting and cookie

I'm trying to use jsoup to login to a site and then scrape information, I am running into in a …

java screen-scraping jsoup
Find the index in an ArrayList that contains a string

By using Jsoup I parse HTML from a website to populate an ArrayList with what I needed to fetch from …

java string arraylist jsoup indexof
JSoup UserAgent, how to set it right?

I'm trying to parse the frontpage of facebook with JSoup but I always get the HTML Code for mobile devices …

jsoup
Page content is loaded with JavaScript and Jsoup doesn't see it

One block on the page is filled with content by JavaScript and after loading page with Jsoup there is none …

javascript java html parsing jsoup
How to parse XML with jsoup

I am trying to parse XML with jsoup, but I can't find any examples on this task. My XML document …

java xml-parsing jsoup
JSOUP select <div> with specific ID

I'm making a small Android application for a class where I find cancer-related events from the American Cancer Society's website. …

java android jsoup