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 the same link from the browser. Please help me

Java code:

Connection connection = Jsoup.connect("http://www.exchangeandmart.co.uk/used-cars-for-sale");
Document doc = connection.get();
System.out.println(doc.getElementById("results")); // prints null

NOTE: There are no exceptions or errors while downloading the page. Only some of the content in the page is missing. I printed the whole document on console with System.out.println(doc); , it was quite different from the page I view in the browser.

link|improve this question

does the doc.toString() outputs anything? If no, then the problem relays on establishing connection to the server and downloading the data. – SYLARRR Nov 15 '11 at 8:05
@SYLARRR I have edited my answer, please have another look. – djembo Nov 15 '11 at 8:14
Do you happen do you use the JSoup from Android? In this case the mobile web page may be displayed which doesent have elements with id's of results. – SYLARRR Nov 15 '11 at 8:19
feedback

1 Answer

up vote 4 down vote accepted

Document doc = Jsoup.connect("http://www.exchangeandmart.co.uk/used-cars-for-sale").userAgent("Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/535.2 (KHTML, like Gecko) Chrome/15.0.874.120 Safari/535.2").get();

Now the page should be rendered as accessed from Chrome on PC.

link|improve this answer
Let me check, I am using it on my pc though NOT on android. But lets hope for good. – djembo Nov 15 '11 at 8:27
Oh goodness me, this worked and worked perfectly. Thanksssssssss a lot thanks thanks – djembo Nov 15 '11 at 8:32
But I am using it on PC, then why it does not work without doing userAgent stuff – djembo Nov 15 '11 at 8:33
Reason is simple: when you access the webpage with Jsoup form your PC, the default useragent string is something APPACHECLIENT 1.4 \ UNKNOWN. And it looks like the website http://www.exchangeandmart.co.uk doesn't know how to handle this kind of user/browser. – SYLARRR Nov 15 '11 at 8:36
Ok thanks...... – djembo Nov 15 '11 at 8:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.