Header

  1. View current page

    정상혁의 수첩

Profile_img_60x60_08
195

Java로 Excel 읽기 API

엑셀 자바로 다루기

JDBC-ODBC Excel driver

 

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/

jxl.jar를 이용해서 Excel file 생성하기

Java Excel API Tutorial

 

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

http://blog.naver.com/iiscariot/140002566176

History

Last edited on 01/08/2009 12:36 by benelog

Comments (0)

You must log in to leave a comment. Please sign in.