Rising Sun
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
148 随笔 :: 0 文章 :: 22 评论 :: 0 Trackbacks
<
2006年7月
>
日
一
二
三
四
五
六
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
5
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(10)
给我留言
查看公开留言
查看私人留言
随笔分类
cpp(3)
(rss)
css(6)
(rss)
hibernate+struts+spring(3)
(rss)
javascript(9)
(rss)
Lucene(3)
(rss)
oracle 数据库(6)
(rss)
云计算(4)
(rss)
其它(6)
(rss)
处理Excel poi(6)
(rss)
学习总结(15)
(rss)
环境设置(2)
(rss)
随笔档案
2015年1月 (3)
2014年12月 (1)
2014年9月 (1)
2014年6月 (2)
2014年4月 (2)
2014年1月 (2)
2013年12月 (3)
2013年11月 (1)
2013年10月 (2)
2013年8月 (2)
2013年7月 (3)
2013年5月 (3)
2013年3月 (9)
2013年2月 (8)
2013年1月 (4)
2012年10月 (1)
2012年9月 (2)
2012年8月 (1)
2012年7月 (3)
2012年5月 (1)
2012年1月 (1)
2011年3月 (1)
2010年12月 (1)
2009年12月 (1)
2009年10月 (1)
2009年8月 (4)
2009年7月 (3)
2009年6月 (2)
2009年5月 (2)
2009年4月 (3)
2008年11月 (3)
2008年10月 (2)
2008年9月 (1)
2008年8月 (2)
2008年7月 (3)
2008年5月 (1)
2007年11月 (1)
2007年10月 (2)
2007年9月 (2)
2007年8月 (3)
2007年7月 (6)
2007年6月 (3)
2007年4月 (2)
2006年12月 (2)
2006年11月 (1)
2006年10月 (2)
2006年9月 (3)
2006年8月 (3)
2006年7月 (26)
2005年11月 (4)
相册
我的相册
java--->ajax
BlueDavy
http://www.blogjava.net/BlueDavy/
css
css
eamoi
搜索
最新评论
1. re: request.getParameterValues与request.getParameter的区别:
5+5+
--5465
2. re: 关于filter验证用户权限
333
--12
3. re: Gson通过借助TypeToken获取泛型参数的类型的方法
博主如果解决了楼上的问题 请联系我 万分感谢 联系方式QQ 474233979
--yueguangxuanyuan
4. re: Gson通过借助TypeToken获取泛型参数的类型的方法
评论内容较长,点击标题查看
--yueguangxuanyuan
5. re: CMS,全称Concurrent Low Pause Collector gc[未登录]
很有用。非常感谢!!!!
--匿名
阅读排行榜
1. Gson通过借助TypeToken获取泛型参数的类型的方法(42666)
2. 304 Not Modified状态码(18895)
3. 电脑非法关机 导致ORA-01033:解决方法(9079)
4. struts2 -- interceptor(如何配置Interceptor) (7510)
5. MYSQL在默认的情况下查询是不区分大小写的(7334)
评论排行榜
1. Gson通过借助TypeToken获取泛型参数的类型的方法(6)
2. Busy Developers' Guide to HSSF Features (说明书)(3)
3. 对于网上看到Window.Open()传值(3)
4. excel 处理 Poi(1)
5. 关于filter验证用户权限(1)
利用POI将数据表导入Excel
/*
* QuickExcel.java
* 作者:杨庆成
* Created on 2004年11月22日, 下午4:05
* 在实际应用中经常要将数据库中的表导入Excel
* 本人在Apache的POI基础上写了一个简单的类
* 有不当指出请指正,谢谢!
*
*/
package
yqc.
poi
;
import
java.sql.*;
import
java.util.*;
import
java.io.*;
import
java.io.
ByteArrayInputStream
;
import
java.io.
FileInputStream
;
import
java.io.
FileOutputStream
;
import
java.io.
IOException
;
import
org.apache.
poi
.hssf.usermodel.*;
import
org.apache.
poi
.poifs.filesystem.POIFSFileSystem;
import
org.apache.
poi
.hssf.record.*;
import
org.apache.
poi
.hssf.model.*;
import
org.apache.
poi
.hssf.usermodel.*;
import
org.apache.
poi
.hssf.util.*;
import
yqc.sql.*;
/**
*
* @author Administrator
*/
public
class
QuickExcel {
/** Creates a new instance of QuickExcel */
private
QuickExcel(
String
file){
_file=file;
}
private
void
open()
throws
IOException
{
InputStream
stream =
null
;
Record[] records =
null
;
POIFSFileSystem fs =
new
POIFSFileSystem(
new
FileInputStream
(_file));
_wb =
new
HSSFWorkbook(fs);
}
private
void
create(){
_wb=
new
HSSFWorkbook();
}
public
static
QuickExcel newInstance (
String
file){
QuickExcel qe=
new
QuickExcel(file);
qe.create();
return
qe;
}
public
static
QuickExcel openInstance(
String
file)
throws
IOException
{
QuickExcel qe=
new
QuickExcel(file);
qe.open();
return
qe;
}
public
void
close(){
try
{
FileOutputStream
fileOut =
new
FileOutputStream
(_file);
_wb.write(fileOut);
//把Workbook对象输出到文件workbook.xls中
fileOut.close();
}
catch
(
Exception
ex){
System
.out.println(ex.getMessage());
}
}
private
void
removeSheet(
String
sheetName){
int
i=_wb.getSheetIndex(
"sheetName"
);
if
(i>=0) _wb.removeSheetAt(i);
}
public
int
fillSheet (
ResultSet
rs,
String
sheetName)
throws
SQLException
{
HSSFSheet st= _wb.createSheet(sheetName);
ResultSetMetaData
rsmd= rs.getMetaData();
int
index=0;
int
result=0;
HSSFRow row=st.createRow(index++);
for
(
int
i=1;i<=rsmd.getColumnCount();++i){
HSSFCell cell=row.createCell((
short
)(i-1));
cell.setCellValue(rsmd.getColumnName(i));
}
while
(rs.next()) {
result++;
row=st.createRow(index++);
for
(
int
i=1;i<=rsmd.getColumnCount();++i){
HSSFCell cell=row.createCell((
short
)(i-1));
cell.setEncoding(cell.ENCODING_UTF_16);
cell.setCellValue(rs.getString(i));
}
}
return
result;
}
public
static
void
main(
String
[] args){
try
{
QuickConnection qc=
new
MssqlConnection(
"jdbc:microsoft:sqlserver://192.168.0.100:1433;DatabaseName=ls"
);
QuickExcel qe=QuickExcel.newInstance(
"a.xls"
);
qc.connect();
String
sql=
"select * from ls.dbo.radio1_emcee"
;
ResultSet
rs=qc.getStatement().executeQuery(sql);
qe.fillSheet(rs,
"MT"
);
qe.close();
qe=QuickExcel.openInstance(
"a.xls"
);
qe.fillSheet(rs,
"MO"
);
qe.close();
qc.close();
}
catch
(
SQLException
ex){
System
.out.println(ex.getMessage());
}
catch
(
IOException
ex){
System
.out.println(ex.getMessage());
}
}
HSSFWorkbook _wb;
String
_file=
"new.xls"
;
}
posted on 2006-07-26 15:30
brock
阅读(448)
评论(0)
编辑
收藏
所属分类:
处理Excel poi
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
管理
相关文章:
excel poi 处理2
Busy Developers' Guide to HSSF Features (说明书)
excel 处理 Poi
利用POI将数据表导入Excel
纯java的Excel解决方案
Excel的java处理方式
Powered by:
BlogJava
Copyright © brock