Knowledge Map
jsp 에서 xlsx는 기본 지원 안됨. 본문
jsp 에서 xlsx는 기본 지원이 안되고 xls만 가능하다.
xlsx를 쓰려면 외부 라이브러리를 등록해서 써야 한다.
<!-------------------------------------------- MS - WORD --------------------------------------------> <%@ page language="java" contentType="application/vnd.ms-excel;charset=utf-8" pageEncoding="utf-8"%> response.setHeader("Content-Disposition", "attachment; filename=test.xls"); response.setHeader("Content-Description", "JSP Generated Data"); // 저장 여부 묻지 않고 바로 저장 response.setContentType("application/vnd.ms-excel"); <!-------------------------------------------- MS - EXCEL --------------------------------------------> <%@ page language="java" contentType="application/vnd.word;charset=utf-8" pageEncoding="utf-8"%> response.setHeader("Content-Disposition", "attachment; filename=test.doc"); response.setHeader("Content-Description", "JSP Generated Data"); // 저장 여부 묻지 않고 바로 저장 response.setContentType("application/vnd.ms-word"); <!-------------------------------------------- 한글 --------------------------------------------> <%@ page language="java" contentType="application/hwp;charset=utf-8" pageEncoding="utf-8"%> response.setHeader("Content-Disposition", "attachment; filename=test.hwp"); response.setHeader("Content-Description", "JSP Generated Data"); // 저장 여부 묻지 않고 바로 저장 response.setContentType("application/hwp"); | cs |
'자바' 카테고리의 다른 글
Problems During Content Assist 에러 (0) | 2017.04.11 |
---|---|
[스크랩]초보 개발자를 위한 스택트레이스 읽는 법 (0) | 2016.07.22 |
하이버네이트 No row with the given identifier exists 에러 (0) | 2016.07.15 |
자바 하이버네이트 관련 에러 (0) | 2016.05.26 |
Comments