[Java/Jsp] Excel 다운로드 시 제목 깨짐현상 방지
2014. 2. 21. 15:40ㆍ프로그래밍/Jsp
- 엑셀변환 후 다운로드 시 제목깨짐현상 방지 하는 방법~!
String fileNm = request.getAttribute("licName").toString();
response.setHeader("Content-Disposition", "attachment;filename="+new String(fileNm.getBytes("utf-8"),"8859_1")+".xls");
->>> new String(fileNm.getBytes("utf-8"),"8859_1")
*) 이 부분이 한글깨짐현상을 방지하는 부분 encoding에 맞게 변경하면됨
'프로그래밍 > Jsp' 카테고리의 다른 글
[Jsp] Jsp 엑셀 다운로드 (0) | 2014.03.31 |
---|---|
[JSP] JSTL 오늘날짜 구하기 (0) | 2014.03.24 |
[Jsp] enctype="multipart/form-data" 에서 request.getParameter null 문제 (0) | 2014.03.07 |
[JSP] Excel 변환시 깨짐현상 방지 (0) | 2014.02.21 |
[JSP] <c:forEach> 반복문 break (0) | 2014.02.21 |