How do I retrieve a URL from a web site using Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T17:19:44Z http://stackoverflow.com/feeds/question/359439 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/359439/how-do-i-retrieve-a-url-from-a-web-site-using-java 5 How do I retrieve a URL from a web site using Java? Johnny Maelstrom 2008-12-11T14:02:10Z 2008-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#359453 0 Answer by Nick Holt for How do I retrieve a URL from a web site using Java? Nick Holt 2008-12-11T14:05:54Z 2008-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#359512 2 Answer by kgiannakakis for How do I retrieve a URL from a web site using Java? kgiannakakis 2008-12-11T14:25:44Z 2008-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#360272 0 Answer by Markus for How do I retrieve a URL from a web site using Java? Markus 2008-12-11T17:55:41Z 2008-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#360291 4 Answer by Rob Hruska for How do I retrieve a URL from a web site using Java? Rob Hruska 2008-12-11T18:02:05Z 2008-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#362344 2 Answer by Johnny Maelstrom for How do I retrieve a URL from a web site using Java? Johnny Maelstrom 2008-12-12T09:55:17Z 2008-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>