How do I retrieve a URL from a web site using Java? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T17:19:44Zhttp://stackoverflow.com/feeds/question/359439http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/359439/how-do-i-retrieve-a-url-from-a-web-site-using-java5How do I retrieve a URL from a web site using Java?Johnny Maelstrom2008-12-11T14:02:10Z2008-12-12T09:55:17Z
<p>I want to use HTTP GET and POST commands to retrieve URLs from a website and parse the HTML. How do I do this?</p>
http://stackoverflow.com/questions/359439/how-do-i-retrieve-a-url-from-a-web-site-using-java/359453#3594530Answer by Nick Holt for How do I retrieve a URL from a web site using Java?Nick Holt2008-12-11T14:05:54Z2008-12-11T14:05:54Z<p>Use <a href="http://hc.apache.org/httpclient-3.x/" rel="nofollow">http://hc.apache.org/httpclient-3.x/</a></p>
http://stackoverflow.com/questions/359439/how-do-i-retrieve-a-url-from-a-web-site-using-java/359512#3595122Answer by kgiannakakis for How do I retrieve a URL from a web site using Java?kgiannakakis2008-12-11T14:25:44Z2008-12-11T14:25:44Z<p>The easiest way to do a GET is to use the built in java.net.URL. However, as mentioned, httpclient is the proper way to go, as it will allow you among others to handle redirects.</p>
<p>For parsing the html, you can use <a href="http://htmlparser.sourceforge.net/" rel="nofollow">html parser</a>.</p>
http://stackoverflow.com/questions/359439/how-do-i-retrieve-a-url-from-a-web-site-using-java/360272#3602720Answer by Markus for How do I retrieve a URL from a web site using Java?Markus2008-12-11T17:55:41Z2008-12-11T17:55:41Z<p>I have used <a href="http://jtidy.sourceforge.net/" rel="nofollow">JTidy</a> in a project and it worked quite well.
A list of other parsers is <a href="http://java-source.net/open-source/html-parsers" rel="nofollow">here</a>, but besides from JTidy I don't know any of them.</p>
http://stackoverflow.com/questions/359439/how-do-i-retrieve-a-url-from-a-web-site-using-java/360291#3602914Answer by Rob Hruska for How do I retrieve a URL from a web site using Java?Rob Hruska2008-12-11T18:02:05Z2008-12-11T18:02:05Z<p>You can use <a href="http://java.sun.com/javase/6/docs/api/java/net/HttpURLConnection.html" rel="nofollow">HttpURLConnection</a> in combination with <a href="http://java.sun.com/javase/6/docs/api/java/net/URL.html" rel="nofollow">URL</a>.</p>
<pre><code>URL url = new URL("http://example.com");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
InputStream stream = connection.getInputStream();
// read the contents using an InputStreamReader
</code></pre>
http://stackoverflow.com/questions/359439/how-do-i-retrieve-a-url-from-a-web-site-using-java/362344#3623442Answer by Johnny Maelstrom for How do I retrieve a URL from a web site using Java?Johnny Maelstrom2008-12-12T09:55:17Z2008-12-12T09:55:17Z<p>The ticked/approved answer for this is from robhruska - thank you. This shows the most basic way to do it, it's simple with an understanding of what's necessary to do a simple URL connection. However, the longer term strategy would be to use <a href="http://hc.apache.org/httpcomponents-client/index.html" rel="nofollow" title="HTTP Client">HTTP Client </a> for more advanced and feature rich ways to complete this task.</p>
<p>Thank you everyone, here's the quick answer again:</p>
<pre><code>URL url = new URL("http://example.com");
HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setRequestMethod("GET");
connection.connect();
InputStream stream = connection.getInputStream();
// read the contents using an InputStreamReader
</code></pre>