學習.......工作.......
BlogJava
首頁
新隨筆
聯系
聚合
管理
隨筆分類
(43)
妙文收藏(4)
(rss)
學習隨筆(19)
(rss)
技術文章轉載(9)
(rss)
生活隨筆(11)
(rss)
文章分類
(2)
Hibernate
(rss)
JSF
(rss)
spring
(rss)
Struts
(rss)
Ubuntu(2)
(rss)
隨筆檔案
(42)
2009年6月 (1)
2007年12月 (1)
2007年7月 (2)
2007年4月 (1)
2007年3月 (2)
2007年1月 (1)
2006年12月 (1)
2006年10月 (14)
2006年9月 (1)
2006年8月 (4)
2006年7月 (2)
2006年5月 (1)
2006年4月 (5)
2006年3月 (6)
文章檔案
(2)
2006年3月 (2)
最新隨筆
1.?idea 8.1.2 是不是有bug
2.? Idea7 開發webservice例子圖解(使用cxf框架,tomat5.5,jdk1.5)
3.?最近學習webwork+spring+hibernate,自己學習過程中的一個例子
4.?webwork中類似struts的DispatchAction的使用方法。
5.?google今天發布了google拼音
6.?http協議頭文件
7.?TCP協議三次握手
8.?2007年來了,又長了一歲
9.?某女生簡歷(z)
10.?在六間房開了個房間,歡迎大家去看看
最新評論
1.?re: 在六間房開了個房間,歡迎大家去看看
沒事做//玩玩六間房//加加人氣
--劉亮
2.?re: 十個經典鬼故事
好嚇人啊- -
--三大阿德薩阿薩德
3.?re: 經典智力題目,看你會幾題.[未登錄]
答案答案答案答案答案
--李
4.?re: 十個經典鬼故事[未登錄]
..................................................
--dd
5.?re: 經典智力題目,看你會幾題.
想知道答案
--汪
jsp導出excel文件,使用POI的
Posted on 2006-10-25 17:55
Hally
閱讀(8216)
評論(4)
編輯
收藏
所屬分類:
學習隨筆
?
<%
@?page?language
=
"
java
"
?contentType
=
"
text/html;charset=gb2312
"
%>
<%
@?page?language
=
"
java
"
????
import
=
"
java.util.*,org.apache.poi.hssf.usermodel.HSSFWorkbook,org.apache.poi.hssf.usermodel.HSSFSheet,org.apache.poi.hssf.usermodel.HSSFRow,org.apache.poi.hssf.usermodel.HSSFCell
"
%>
<%
????response.setContentType(
"
APPLICATION/OCTET-STREAM
"
);
????response.setHeader(
"
Content-Disposition
"
,
????????????
"
attachment;?filename=\
"
test.xls
"
?+
????????????
"
\
""
);
????HSSFWorkbook?wb?
=
?
new
?HSSFWorkbook();
????HSSFSheet?sheet?
=
?wb.createSheet(
"
sheet1
"
);
????
//
以下以寫表頭
????
//
表頭為第一行
????HSSFRow?row?
=
?sheet.createRow((
short
)?
0
);
????HSSFCell?cell1?
=
?row.createCell((
short
)?
0
);
????HSSFCell?cell2?
=
?row.createCell((
short
)?
1
);
????HSSFCell?cell3?
=
?row.createCell((
short
)?
2
);
????cell1.setEncoding((
short
)?
1
);
????cell1.setCellType(
1
);
????cell2.setEncoding((
short
)?
1
);
????cell2.setCellType(
1
);
????cell3.setEncoding((
short
)?
1
);
????cell3.setCellType(
1
);
????
//
定義表頭的內容
????cell1.setCellValue(
"
測試
"
);
????cell2.setCellValue(
"
測試2
"
);
????cell3.setCellValue(
"
測試3
"
);
????
for
?(
int
?i?
=
?
0
;?i?
<
?
4
;?i
++
)?
{
????????
//
定義數據從第二行開始???????
????????row?
=
?sheet.createRow((
short
)?i?
+
?
1
);
????????cell1?
=
?row.createCell((
short
)?
0
);
????????cell2?
=
?row.createCell((
short
)?
1
);
????????cell3?
=
?row.createCell((
short
)?
2
);
????????cell1.setEncoding((
short
)?
1
);
????????cell1.setCellType(
1
);
????????cell2.setEncoding((
short
)?
1
);
????????cell2.setCellType(
1
);
????????cell3.setEncoding((
short
)?
1
);
????????cell3.setCellType(
1
);
????????
//
填充內容
????????cell1.setCellValue(
"
ggg
"
);
????????cell2.setCellValue(
"
00000
"
);
????????cell3.setCellValue(
"
adfasdf
"
);
????}
????wb.write(response.getOutputStream());
????response.getOutputStream().flush();
????response.getOutputStream().close();
%>
Feedback
#
re: jsp導出excel文件,使用POI的
回復
更多評論
2006-10-25 18:04 by
Hally
poi 下載地址
http://jakarta.apache.org/site/downloads/downloads_poi.cgi
#
re: jsp導出excel文件,使用POI的
回復
更多評論
2007-07-11 13:06 by
adfasdf
afasfasfd
#
re: jsp導出excel文件,使用POI的
回復
更多評論
2008-05-25 20:47 by
eter
@adfasdf
#
re: jsp導出excel文件,使用POI的
回復
更多評論
2009-03-02 14:22 by
wangdong
頂呀,搞出來是亂碼
新用戶注冊
刷新評論列表
只有注冊用戶
登錄
后才能發表評論。
網站導航:
博客園
IT新聞
Chat2DB
C++博客
博問
管理
相關文章:
idea 8.1.2 是不是有bug
Idea7 開發webservice例子圖解(使用cxf框架,tomat5.5,jdk1.5)
最近學習webwork+spring+hibernate,自己學習過程中的一個例子
webwork中類似struts的DispatchAction的使用方法。
jsp導出excel文件,使用POI的
常用log4j配置
一個學習Oracle sql 的不錯的地方,記錄一下
查看修改oracle數據庫字符集
oracle中建立job定期運行存儲過程總結
Linux 發行版Ubuntu
常用鏈接
我的隨筆
我的評論
我的參與
最新評論
我的地盤
csdn Blog
msn 空間
在54bk上面的Blog
我的主頁QQHally
網絡硬盤
有用的鏈接
Apache org
Spring Framework
ubuntu forum
Ubuntu文檔
評論排行榜
1.?十個經典鬼故事(96)
2.?免費送gmail邀請,QQ寵物(54)
3.?經典智力題目,看你會幾題.(11)
4.?好玩的js~~~(5)
5.?jsp導出excel文件,使用POI的(4)
閱讀排行榜
1.? 查看修改oracle數據庫字符集(15842)
2.?jsp導出excel文件,使用POI的(8216)
3.?oracle中建立job定期運行存儲過程總結(5902)
4.?經典智力題目,看你會幾題.(5504)
5.?推薦一個spring的教程,轉了簡介過來.(5488)
posts - 43, comments - 200, trackbacks - 0, articles - 2
Copyright © Hally
主站蜘蛛池模板:
鲜城
|
乌什县
|
连江县
|
哈巴河县
|
兴化市
|
盖州市
|
乡宁县
|
托克逊县
|
连江县
|
大渡口区
|
晋城
|
冕宁县
|
绥棱县
|
南丰县
|
东海县
|
宁南县
|
若羌县
|
曲阳县
|
广汉市
|
高陵县
|
芒康县
|
垦利县
|
泰安市
|
石狮市
|
建昌县
|
永和县
|
邮箱
|
确山县
|
溧水县
|
应用必备
|
崇左市
|
抚远县
|
泸水县
|
太和县
|
临漳县
|
许昌市
|
桃园市
|
清河县
|
柳林县
|
井陉县
|
孟州市
|