Skip to content

Instantly share code, notes, and snippets.

@RX14
Created February 8, 2015 21:04
Show Gist options
  • Save RX14/77fc0350fe5779c8150c to your computer and use it in GitHub Desktop.
Save RX14/77fc0350fe5779c8150c to your computer and use it in GitHub Desktop.
// just to close the streams...
try (ReadableByteChannel channel = Channels.newChannel(connect.getInputStream());
FileOutputStream outStream = new FileOutputStream(outFile))
{
outStream.getChannel().transferFrom(channel, 0, Long.MAX_VALUE);
outStream.flush();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment