Skip to content

Instantly share code, notes, and snippets.

@Raouf25
Created April 10, 2020 16:20
Show Gist options
  • Save Raouf25/c2859fd4612dc661178a5b05c857c23d to your computer and use it in GitHub Desktop.
Save Raouf25/c2859fd4612dc661178a5b05c857c23d to your computer and use it in GitHub Desktop.
private InputStream extractInputStream(MultipartFile file) {
try {
return file.getInputStream();
} catch (IOException e) {
e.printStackTrace();
}
return null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment