Skip to content

Instantly share code, notes, and snippets.

@java-MagicWang
Last active December 14, 2015 04:18
Show Gist options
  • Save java-MagicWang/5026989 to your computer and use it in GitHub Desktop.
Save java-MagicWang/5026989 to your computer and use it in GitHub Desktop.
public void download(String url, String fileURL) {
try {
URL website = new URL(url);
ReadableByteChannel rbc = Channels.newChannel(website.openStream());
FileOutputStream fos = new FileOutputStream(fileURL);
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
} catch (Exception e) {
e.printStackTrace();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment