jquery.fileDownload.js 라이브러리를 사용해서 파일다운로드시에 이런식으로 파일이 깨지는 현상이 발견됨. 참고로 해당 라이브러리는 } else { //create a temporary iframe that is used to request the fileUrl as a GET request $iframe = $("").appendTo("body"); } } else { 이런식으로 iframe에 fileUrl값을 줘서 파일다운로드 하는 형식 결론은 프론트 라이브러리는 문제없음. 백엔드에서 파일명을 content-disposition을 사용해서 인코드 처리를 해줘야 함. String title = "파일명"; title = URLEncoder.encode(title, "UTF-8"); //이 ..