up vote 0 down vote favorite
share [g+] share [fb]

I want to pull the entire HTML source code file from a website in Java (or Python or PHP if it is easier in those languages to display). I wish only to view the HTML and scan through it with a few methods- not edit or manipulate it in any way, and I really wish that I do not write it to a new file unless there is no other way. Are there any library classes or methods that do this? If not, is there any way of going about this?

link|improve this question
feedback

3 Answers

up vote 5 down vote accepted

In Java:

URL url = new URL("http://stackoverflow.com");
URLConnection connection = new URLConnection(url);
InputStream stream = url.openConnection();
// ... read stream like any file stream

This code, is good for scripting purposes and internal use. I would argue against using it for production use though. It doesn't handle timeouts and failed connections.

I would recommend using HttpClient library for production use. It supports authentication, redirect handling, threading, pooling, etc.

link|improve this answer
I think I'm doing something wrong. The compiler tells me that URLConnection cannot be instantiated (it's an abstract class). How do I instantiate it correct, or is there a subclass for URLConnection that can be instantiated? – Brian Dec 3 '09 at 3:56
I think it should be URL hp = new URL("stackoverflow.com";); URLConnection hpCon = hp.openConnection(); – GustlyWind Dec 3 '09 at 4:10
@GustlyWind, thank. Should've actually checked the code. – notnoop Dec 3 '09 at 5:27
feedback

In Python:

import urllib
# Get a file-like object for the Python Web site's home page.
f = urllib.urlopen("http://www.python.org")
# Read from the object, storing the page's contents in 's'.
s = f.read()
f.close()

Please see Python and HTML Processing for more details.

link|improve this answer
feedback

Maybe you should also consider an alternative like running a standard utility like wget or curl from the command line to fetch the site tree into a local directory tree. Then do your scanning (in Java, Python, whatever) using the local copy. It should be simpler to do that, than to implement all of the boring stuff like error handling, argument parsing, etc yourself.

If you want to fetch all pages in a site, wget and curl don't know how to harvest links from HTML pages. An alternative is to use an open source web crawler.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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