I would like to be able to fetch a web page's html and save it to a String, so I can do some processing on it. Also, how could I handle various types of compression.
How would I go about doing that using Java?
|
I would like to be able to fetch a web page's html and save it to a How would I go about doing that using Java? |
||||
|
|
|
Here's some tested code using Java's URL class. I'd recommend do a better job than I do here of handling the exceptions or passing them up the call stack, though.
|
|||||||||||
|
|
I'd use a decent HTML parser like Jsoup. It's then as easy as:
It handles GZIP and chunked responses and character encoding fully transparently. It offers more advantages as well, like HTML traversing and manipulation by CSS selectors like as jQuery can do. You only have to grab it as
You really don't want to run basic String methods or even regex on HTML to process it. See also: |
||||
|
Bill's answer is very good, but you may want to do some things with the request like compression or user-agents. The following code shows how you can various types of compression to your requests.
To also set the user-agent add the following code:
|
||||
|
|
|
Well, you could go with the built-in libraries such as URL and URLConnection, but they don't give very much control.
|
|||||||||||
|
|
On a Unix/Linux box you could just run 'wget' but this is not really an option if you're writing a cross-platform client. Of course this assumes that you don't really want to do much with the data you download between the point of downloading it and it hitting the disk. |
|||
|