I have a URL, from which I need its HTML. I used the following piece of code.
String url = "http://www.sears.com/search="+keywords;
String jsp = retrieveContent(url);
I noticed that the string jsp
has different contents than the actual source code of the web page (when I view source from my browser). I believe a server-side script (or it is being redirected) is being called when the browser opens and this script's output is what i see. Can you tell me a way to get the actual html file of the page?
You can check this link as an example. how do i get the actual html of this pagE?