Java로 Excel 읽기 API
JSP에서 바로 저장
<%@ page contentType="application/vnd.ms-excel; name='My_Excel'" %>
<%
response.setHeader("Content-Disposition", "inline; filename=myfile.xls");
response.setHeader("Content-Description", "JSP Generated Data");
%>
Java Excel API (JXL)
http://jexcelapi.sourceforge.net/
http://www.andykhan.com/jexcelapi/
POI
http://jakarta.apache.org/poi/index.html
Reading Excel Files with Apache POI HSSF
http://www.developer.com/lang/article.php/3792296
Writing Excel Files with Apache POI HSSF
http://www.developer.com/lang/article.php/3794646
Apache POI 프로젝트를 이용해서 엑셀 파일 읽고 쓰기. 이젠 xlsx 파일도 지원한다.
Xlrd
History
Last edited on 01/08/2009 12:36 by benelog
Comments (0)