It’s my first note in english. I think that their content could be better in english than in polish. So, forgive me any mistakes.
Sometimes in web application we create, we need to give download file functionality. Using HttpServletRespone is simple, maybe I’ll write about it soon. But I have problem with setting a file name. And it also was very easy. The solution of this problem is:
response.setHeader("Content-Disposition", "attachment; filename="+ fileName);