學習.......工作.......
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
主站蜘蛛池模板:
亚洲一卡2卡3卡4卡乱码 在线
|
国产亚洲一区二区三区在线
|
久久国产亚洲精品
|
国产乱子精品免费视观看片
|
亚洲综合视频在线
|
在线观看的免费网站无遮挡
|
亚洲国产精品成人精品软件
|
2015日韩永久免费视频播放
|
亚洲av乱码一区二区三区
|
中国人xxxxx69免费视频
|
亚洲免费在线观看视频
|
日本在线高清免费爱做网站
|
在线a亚洲老鸭窝天堂av高清
|
日韩精品免费一区二区三区
|
粉色视频成年免费人15次
|
亚洲免费一区二区
|
免费污视频在线观看
|
久久综合亚洲鲁鲁五月天
|
1000部国产成人免费视频
|
在线综合亚洲欧洲综合网站
|
久久免费精品一区二区
|
亚洲经典在线中文字幕
|
免费中文熟妇在线影片
|
日韩亚洲翔田千里在线
|
亚洲日韩中文在线精品第一
|
久草免费手机视频
|
亚洲日本久久一区二区va
|
亚洲成a人无码av波多野按摩
|
亚洲人成免费电影
|
亚洲av无码兔费综合
|
国产精品亚洲w码日韩中文
|
日韩人妻一区二区三区免费
|
亚洲熟妇无码八V在线播放
|
亚洲国产一级在线观看
|
免费播放一区二区三区
|
亚洲av午夜电影在线观看
|
亚洲国产精品无码AAA片
|
野花高清在线电影观看免费视频
|
美女18毛片免费视频
|
久久亚洲私人国产精品
|
日本最新免费不卡二区在线
|