Skip to content

Instantly share code, notes, and snippets.

@slawekradzyminski
Last active June 4, 2016 07:22
Show Gist options
  • Save slawekradzyminski/0fc1cdceaf4dd83970d21504160734b5 to your computer and use it in GitHub Desktop.
Save slawekradzyminski/0fc1cdceaf4dd83970d21504160734b5 to your computer and use it in GitHub Desktop.
File downloadFile() throws Exception {
File downloadedFile = File.createTempFile("download", ".tmp");
HttpResponse fileToDownload = getHttpResponse();
FileUtils.copyInputStreamToFile(fileToDownload.getEntity().getContent(), downloadedFile);
return downloadedFile;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment