Я пытаюсь загрузить файл и динамически задаю имя файла.Но при загрузке файла я получаю имя файла как «3823720b-3d63-4e2c-8fc2-6abdc34b5cd8.docx» Но я передаю имя моего файла как «Sample.docx»
if (Files.exists(file)) {
response.setContentType(existingDocuments.getContentType());
response.addHeader("Content-Disposition", "attachment; filename=" + existingDocuments.getFileName());
Files.copy(file, response.getOutputStream());
response.getOutputStream().flush();
}