Tagged Questions

References: Home page

learn more… | top users | synonyms

14
votes
9answers
4k views

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 program (in Java). For example, if I know the exact page I want info from, for the sake of ...
6
votes
5answers
375 views

remove empty tag pairs from HTML fragment

I have a user-submitted string that contains HTML content such as "<p></p><div></div><p>Hello<br/>world</p><p></p>" I would like to transform ...
5
votes
1answer
212 views

Get URL of images in CSS file using Java?

I'm trying to get the URLs for images (all MIME types) in a remote CSS file using Java. I am using jsoup to get the URL of the css. After countless hours of looking at CSS Parser I couldn't figure ...
5
votes
1answer
286 views

Jsoup: Extract all HTML between two blocks in CSS-less HTML

What would be an optimal way, using Jsoup, to extract all HTML (either to a String, Document or Elements) between two blocks that conform to this pattern: <strong> {any HTML could appear here, ...
5
votes
2answers
545 views

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> tags in the XML document, jsoup will change <link>some text here</link> to <link ...
5
votes
2answers
376 views

How to replace words with span tag using jsoup?

Assume I have the following html: <html> <head> </head> <body> <div id="wrapper" > <div class="s2">I am going <a title="some title" href="">by ...
5
votes
1answer
450 views

Jsoup select div having multiple classes

I am trying to select, using Jsoup, a <div> that has multiple classes: <div class="content-text right-align bold-font">...</div> The syntax for doing so, to the best of my ...
4
votes
5answers
133 views

Debugging Java Out of Memory Error

I'm still a relatively new programmer, and an issue I keep having in Java is Out of Memory Errors. I don't want to increase the memory using -Xmx, because I feel that the error is due to poor ...
4
votes
1answer
145 views

Jsoup: select() returns empty when it shouldn't

I am trying to select the infobox on Wikipedia's Google entry page: http://en.m.wikipedia.org/wiki/Google So, I call: contentDiv = document.select("div[id=content]").first(); Which works as ...
4
votes
7answers
569 views

How can I extract only the main textual content from an HTML page?

Update Boilerpipe appears to work really well, but I realized that I don't need only the main content because many pages don't have an article, but only links with some short description to the ...
4
votes
1answer
558 views

JSoup 1.6.0 on Android throws Exception: String.isEmpty() NoSuchMethodExists

I'm trying to use JSoup 1.6.0 with my Android application and it throws a NoSuchMethodExists exception. This other question tells me that isEmpty() was not added to Java JRE until 1.6 -- I've checked ...
4
votes
1answer
189 views

jsoup second element instead of first()

I have translated the PHP Simple HTML DOM query: $article->find('td[id$=tdDescription] div a', 1)->plaintext; to the jsoup query: resultRow.select("td[id$=tdDescription] > div > ...
4
votes
1answer
2k views

how to parse a table from HTML using jsoup

<td width="10"></td><td width="65"><img src="/images/sparks/NIFTY.png" /> </td> <td width="65">5,390.85</td><td ...
4
votes
3answers
501 views

How to Parse Only Text from HTML

Hey Friends how can i parse only text from a web page using jsoup using java?
4
votes
4answers
498 views

Do external libraries make apps slower?

I am building an app that scrapes information from web pages. To do that I have chosen to use an html scraper called Jsoup because it's so simple to use. Jsoup is also dependent on Apache Commons Lang ...
3
votes
2answers
117 views

How to write an ampersand character in Jsoup

I'm using Jsoup to parse and modify some HTML. In certain places, I want to add a non-breaking space entity (&nbsp;) to the HTML. I assumed I could do it as in this simplified example: Element ...
3
votes
1answer
136 views

Jsoup is unable to fetch complete content from a webpage[No errors/exceptions, but misses some content]

I am trying to fetch content from following page with JSOUP: http://www.exchangeandmart.co.uk/used-cars-for-sale But it does not fetch the div with id=results , even though it is visible when I open ...
3
votes
2answers
113 views

Jsoup Select only innermost divs

Is there a way to select only innermost divs (i.e. divs that do not contain other divs) in Jsoup? To clarify: I am referring to divs only. That is, if a div contains elements that aren't divs but it ...
3
votes
1answer
193 views

How do I parse an HTML document with JSoup to get a list of links?

I am trying to parse http://www.craigslist.org/about/sites to build a set of text/links to load a program dynamically with this information. So far I have done this: Document doc = ...
3
votes
1answer
72 views

How can I select the divs elements that not having another divs inside it?

I'm using Java and Jsoup to parse HTML pages and I want to get all the divs that not contains another divs inside it to print the text it contains. But for example, if a div contains a table, and the ...
3
votes
2answers
220 views

In Jsoup, is it possible get the Elements from a list of Elements without runs through it?

I'm new to Jsoup, but this appears to be a great tool. I'm trying to extract the robots metatag. I have the following code: Document doc = Jsoup.parse(htmlContent); Elements metatags = ...
3
votes
3answers
440 views

Parsing HTML webpages in Java

I need to parse/read a lot of HTML webpages (100+) for specific content (a few lines of text that is almost the same). I used scanner objects with reg. expressions and jsoup with its html parser. ...
3
votes
2answers
395 views

Reading JSON Content

I'm using jsoup to scrape some HTML data and it's working out great. Now I need to pull some JSON content (only JSON, not HTML). Can I do this easily with jsoup or do I have to do it using another ...
3
votes
2answers
462 views

android html download and parse error

I am trying to download the html file using the ul of the page. I am using Jsoup. This is my code: TextView ptext = (TextView) findViewById(R.id.pagetext); Document doc = null; try { ...
3
votes
5answers
3k views

Convert HTML to plain text in Java

I need to convert HTML to plain text. My only requirement of formatting is to retain new lines in the plain text. New lines should be displayed not only in the case of < br > but other tags, eg. ...
2
votes
1answer
56 views

Parsing elements within elements in jsoup?

Recently started programming Android Java (Eclipse), Im trying to make a simple reader app using jsoup. Ive got html like this; <article id="id" class="artikel"> <h1>Title</h1> ...
2
votes
3answers
122 views

Why won't the Euro symbol display properly in this web page?

I'm using the following JSoup code to render this currency: currencySpan.html("&euro;" + currencyFormat.format(estimatedValue)); However if you visit http://www.lastcalc.com/pmGgp1QR to see the ...
2
votes
1answer
129 views

Jsoup javascript button clicking

How do I perform a click on a javascript button using Jsoup? String html = Jsoup.connect(url) .followRedirects(true) .data("login_name", username) ...
2
votes
3answers
104 views

What is the fastest way to remove html tags from a document in java?

I have bunch of web document and want to remove the html tags from it. I saw some posts on StackOverflow on how to do in java, all from regex to HtmlCleaner and Jsoup. I am interested in finding the ...
2
votes
1answer
40 views

JSoup: Extracting one word from within a class tag

I've been using JSoup for the last few weeks to successfully scrape data from a web page; however, I've come to a dead end in trying to figure out a way to extract just a single word from within a ...
2
votes
2answers
220 views

Wikipedia first paragraph

I'm writing some Java code in order to realize NLP tasks upon texts using Wikipedia. How can I use JSoup to extract the first paragraph of a Wikipedia article? Thanks a lot.
2
votes
1answer
96 views

Jsoup bug when parsing RSS?

I'm trying to grab a list of links to articles from this feed: http://rss.cbc.ca/lineup/topstories.xml However, when Jsoup reads it in, the links in the tags ...
2
votes
2answers
251 views

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. I've been using JSoup to get basic information about the events, and ...
2
votes
1answer
197 views

Trying to replicate a successful POST request with JSoup - data posted to server does not get decoded

Http request header: Host: www.mysite.com Content-Type: application/x-www-form-urlencoded Cookie: bbuserid=XXX; bbpassword=YYY; bbsessionhash=ZZZ Content-Length: 252 Http request body: ...
2
votes
1answer
112 views

How to check if an URL doesn't exist?

I trying to check if an URL which I want to connect to exists or not. Here's my attempt: try { // Connect to the url document = Jsoup.connect("http://www.malformedurl.com").get(); tags = ...
2
votes
1answer
319 views

Jsoup connection with basic access authentication

Is there a way in Jsoup to load a document from a website with basic access authentication?
2
votes
0answers
149 views

JSoup doesn't parse Android Known Issues Page

I am using JSoup to download and parse the Android Issues Page. This is my code so far: URL url = null; try { url = new URL( ...
2
votes
1answer
190 views

Jsoup Element.attr() returning unexpected value (Android)

i'm using JSoup to parse a webpage like this, and make it into two string arrays, one for each of the items text values (to be displayed in a ListActivity) and one for the links. some of these text ...
2
votes
1answer
141 views

Google Reader-esque optimizing of WebViews on Android

I have an app that displays the html of a blog post in a WebView. The images, however, are rather large and do not fit to the screen. When viewing the post in the Android Google Reader app, however, ...
2
votes
1answer
251 views

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 into a StringBuffer, in this case 5342test. The element in value= "" can change so i can not search ...
2
votes
1answer
138 views

How to parse html to get 3 url's to seperate Strings?

I am trying to parse each URL from this HTML <div class="latest-media-images"> <div class="hdr-article">LATEST IMAGES</div> <a class="lnk-thumb" ...
2
votes
1answer
120 views

Jsoup: “Select only links with text() equal to”

One way to cul links with text() that equals some predefined strings is straightforward: Elements links = document.getElementsByTag("a"); for (Element link : links) { if ...
2
votes
1answer
160 views

Extract text between two <hr> tags in CSS-less HTML

Using Jsoup, what would be an optimal approach to extract text, of which its pattern is known ([number]%%[number]) but resides in an HTML page that uses neither CSS nor divs, spans, classes or other ...
2
votes
1answer
524 views

Sending post request and save cookies

How can I save cookies with Jsoup? Or I first must provide them to connection object and then save?
2
votes
2answers
153 views

IIS response with Content-Type: text throws an “Unhandled content type ”null“” exception in Jsoup

I'm POSTing some data to an IIS server which replies with an simple id (here 1692945): Cache-Control: private Content-Type: text; charset=utf-8 Server: Microsoft-IIS/7.5 X-AspNet-Version: 2.0.50727 ...
2
votes
1answer
343 views

How to extract separate text nodes with Jsoup?

I have an element like this : <td> TextA <br/> TextB </td> How can I extract TextA and TextB separately?
2
votes
1answer
278 views

Jsoup.parse() vs. Jsoup.parse() - or How does URL detection work in Jsoup?

Jsoup has 2 html parse() methods: parse(String html) - "As no base URI is specified, absolute URL detection relies on the HTML including a tag." parse(String html, String baseUri) - "The URL where ...
2
votes
1answer
535 views

Use jsoup or gquery for plain XML

I was recently wondering about a good library for XML manipulation in Java: A nice Java XML DOM utility Before re-inventing the wheel, porting jQuery to Java in jOOX, I checked out these libraries: ...
2
votes
1answer
64 views

Explain head and tail methods in NodeVisitor interface in Jsoup

While Jsoup appears to be very good library to scrap HTML but unfortunately its API has virtually no documentation. Here is the API for Nodevisitor class: ...
2
votes
1answer
90 views

Jsoup baseUri gone after selct

I just discovered that setting the baseUri is necessary for each Element you get by doing a select. It would be a lot better if the baseUri of the Document is applied to each Element. Document d = ...

1 2 3 4 5 9