BlueSpace
思想有多远,我们就能走多远!
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
posts - 0, comments - 5, trackbacks - 0
<
2024年12月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
留言簿
(1)
给我留言
查看公开留言
查看私人留言
我参与的团队
深圳Java俱乐部(0/0)
文章分类
ajax(1)
hibernate(4)
java(21)
javasrcipt(13)
mysql数据库(6)
spring
文章档案
2009年8月 (1)
2009年3月 (2)
2008年10月 (1)
2008年7月 (3)
2008年6月 (11)
2008年3月 (1)
2008年2月 (1)
2007年12月 (11)
2007年11月 (3)
2007年9月 (13)
相册
my photo
http://www.blogjava.net/beansoft
http://www.blogjava.net/sterning
http://www.blogjava.net/sterning
搜索
最新评论
1. re: xfire aegis转
评论内容较长,点击标题查看
--啊啊啊
2. re: xfire aegis转
itn
--吃饭会非常
3. re: distinct 与 order by
“select * from test group by name”这个SQL语句有问题,执行不了
--didi
4. re: java读取excel文件
good,so well,
--1111
5. re: 正则表达式,不区分大小写的替换
评论内容较长,点击标题查看
--新手。
java写入excel文件
要用到poi-2.5.1-final-20040804.jar包
1
import
java.io.FileOutputStream;
2
import
java.sql.Connection;
3
import
java.sql.ResultSet;
4
import
java.sql.ResultSetMetaData;
5
6
import
org.apache.poi.hssf.usermodel.HSSFCell;
7
import
org.apache.poi.hssf.usermodel.HSSFRow;
8
import
org.apache.poi.hssf.usermodel.HSSFSheet;
9
import
org.apache.poi.hssf.usermodel.HSSFWorkbook;
10
import
org.dom4j.Document;
11
import
org.dom4j.Element;
12
13
import
wufalong.exportServer.ConnectBean;
14
import
wufalong.exportServer.CreateConnection;
15
import
wufalong.exportServer.GetResultSet;
16
import
wufalong.exportServer.LoadRootElementByConfigFile;
17
import
exportxls.JsUserBasicData;
18
19
public
class
Person20070517
20
{
21
public
static
void
main(String args[])
22
{
23
Person20070517 c
=
new
Person20070517();
24
int
allcount
=
0
;
25
allcount
=
allcount
+
c.createPersonMobile(
"
c:/人才.xls
"
);
26
}
27
28
public
int
createPersonMobile(String filename)
29
{
30
Connection con
=
null
;
31
ResultSet rs
=
null
;
32
Document doc
=
LoadRootElementByConfigFile.getRootElement();
33
Element e
=
doc.getRootElement().element(
"
import
"
);
34
try
35
{
36
con
=
CreateConnection.getConnect(e);
37
rs
=
GetResultSet.getResule(con,ConnectBean.getSql(e));
38
FileOutputStream fOut
=
null
;
39
HSSFWorkbook workbook
=
new
HSSFWorkbook();
40
HSSFSheet sheet
=
workbook.createSheet();
41
HSSFRow row
=
null
;
42
HSSFCell cell
=
null
;
43
int
i
=
1
;
44
int
writeadd
=
0
;
45
String cellvalue
=
""
;
46
JsUserBasicData jub
=
new
JsUserBasicData();
47
row
=
sheet.createRow(
0
);
48
cell
=
row.createCell((
short
)
0
);
49
cell.setCellType(HSSFCell.CELL_TYPE_STRING);
50
cell.setEncoding(HSSFCell.ENCODING_UTF_16);
51
cell.setCellValue(
"
姓名
"
);
52
cell
=
row.createCell((
short
)
1
);
53
cell.setCellType(HSSFCell.CELL_TYPE_STRING);
54
cell.setEncoding(HSSFCell.ENCODING_UTF_16);
55
cell.setCellValue(
"
手机
"
);
56
57
while
(rs.next())
{
58
59
System.out.println(
"
正在生成第
"
+
i
+
"
条记录
"
);
60
ResultSetMetaData rsmd
=
rs.getMetaData();
61
row
=
sheet.createRow((
short
) i);
62
int
colcount
=
rsmd.getColumnCount();
63
for
(
int
icc
=
0
; icc
<
colcount; icc
++
)
{
64
cellvalue
=
rs.getString(icc
+
1
);
65
cell
=
row.createCell((
short
) icc);
66
System.out.println(
"
md:
"
+
cellvalue);
67
cell.setCellType(HSSFCell.CELL_TYPE_STRING);
68
cell.setEncoding(HSSFCell.ENCODING_UTF_16);
69
cell.setCellValue(cellvalue);
70
}
71
i
++
;
72
}
73
74
fOut
=
new
FileOutputStream(filename);
75
workbook.write(fOut);
76
fOut.flush();
77
fOut.close();
78
System.out.println(filename
+
"
文件生成
共
"
+
i
+
"
条
"
);
79
rs.close();
80
rs
=
null
;
81
con.close();
82
con
=
null
;
83
return
i;
84
}
catch
(Exception ee)
85
{
86
System.out.println(
"
發生了
"
+
ee.getMessage()
+
"
例外
"
);
87
}
88
finally
89
{
90
GetResultSet.closeResultSet(rs);
91
CreateConnection.closeConnect(con);
92
}
93
return
0
;
94
}
95
}
96
posted on 2007-09-03 13:56
crazy
阅读(1785)
评论(0)
编辑
收藏
所属分类:
java
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
java HttpClient
html正则处理
正则2
正则
java的时间处理
xfire 集合 aegis
xfire aegis转
转载
判断是否存在中文
java正则表达式