Guest User

Untitled

a guest
May 28th, 2018
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. if (Files.exists(file)) {
  2. response.setContentType(existingDocuments.getContentType());
  3. response.addHeader("Content-Disposition", "attachment; filename=" + existingDocuments.getFileName());
  4. Files.copy(file, response.getOutputStream());
  5. response.getOutputStream().flush();
  6. }
Add Comment
Please, Sign In to add comment