Skip to content

Instantly share code, notes, and snippets.

@pgbytes
Created August 7, 2014 14:31
Show Gist options
  • Save pgbytes/febfb417e2c8e53d301f to your computer and use it in GitHub Desktop.
Save pgbytes/febfb417e2c8e53d301f to your computer and use it in GitHub Desktop.
Download a web resource using apache commons #java
private byte[] downloadObject(String srcUrl) throws IOException
{
URL url = new URL(srcUrl);
InputStream in = new BufferedInputStream(url.openStream());
return IOUtils.toByteArray(in);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment