Skip to content

Instantly share code, notes, and snippets.

@mindcrime
Last active June 26, 2018 16:09
Show Gist options
  • Save mindcrime/694e45ec673b17a1a576e1df4d8d5f46 to your computer and use it in GitHub Desktop.
Save mindcrime/694e45ec673b17a1a576e1df4d8d5f46 to your computer and use it in GitHub Desktop.
Sample use of HTTP GET with Commons HttpClient
CloseableHttpClient httpclient = HttpClients.createDefault();
HttpGet httpget = new HttpGet("http://localhost/");
CloseableHttpResponse response = httpclient.execute(httpget);
try
{
<...>
}
finally
{
response.close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment