能够操作excel的开源项目jexcelapi

系统 1829 0
<!-- Feedsky FEED发布代码开始 --> <!-- FEED自动发现标记开始 --> 点击这里使用RSS订阅本Blog: <link rel="alternate" href="http://feed.feedsky.com/softwave" type="application/rss+xml" title="RSS 2.0"> <!-- FEED自动发现标记结束 --><script language="javascript"><!-- main_sub="c1s67"; more_subs=""; --> </script><script language="javascript" src="http://www.feedsky.com/jsout/publishlist_v2.js?burl=softwave&amp;out_html=true"></script><!-- Feedsky FEED发布代码结束 -->

jexcelapi是一个开源项目,主要用来操作excel.
主页地址: http://www.andykhan.com/jexcelapi/

现在做一个项目用到了它,根据不同的公司生成不同的文件夹,
在相应的文件夹下生成对应的xls. 这里只帖出生成xls部分核心代码:

public void generateXls()
{
try
{
/***/ /** **********创建工作簿************ */
WritableWorkbookworkbook
= Workbook.createWorkbook( new File( " d:/test.xls " ));
/***/ /** **********创建工作表************ */
WritableSheetsheet
= workbook.createSheet( " 工作表名称 " , 0 );

/***/ /** *********设置列宽**************** */
sheet.setColumnView(
0 , 15 ); // 第1列
sheet.setColumnView( 1 , 18 ); // 第2列
sheet.setColumnView( 2 , 13 );
sheet.setColumnView(
3 , 13 );
sheet.setColumnView(
4 , 15 );
sheet.setColumnView(
5 , 15 );
// 设置行高
sheet.setRowView( 0 , 600 , false );
sheet.setRowView(
1 , 400 , false );
sheet.setRowView(
7 , 400 , false );
// 设置页边距
sheet.getSettings().setRightMargin( 0.5 );
// 设置页脚
sheet.setFooter( "" , "" , " 测试页脚 " );
/***/ /** ************设置单元格字体************** */
// 字体
WritableFontNormalFont = new WritableFont(WritableFont.ARIAL, 10 );
WritableFontBoldFont
= new WritableFont(WritableFont.ARIAL, 14 ,
WritableFont.BOLD);
WritableFonttableFont
= new WritableFont(WritableFont.ARIAL, 12 ,
WritableFont.NO_BOLD);
WritableFontbaodanFont
= new WritableFont(WritableFont.ARIAL, 10 ,
WritableFont.BOLD);

/***/ /** ************以下设置几种格式的单元格************ */
// 用于标题
WritableCellFormatwcf_title = new WritableCellFormat(BoldFont);
wcf_title.setBorder(Border.NONE,BorderLineStyle.THIN);
// 线条
wcf_title.setVerticalAlignment(VerticalAlignment.CENTRE); // 垂直对齐
wcf_title.setAlignment(Alignment.CENTRE); // 水平对齐
wcf_title.setWrap( true ); // 是否换行

// 用于表格标题
WritableCellFormatwcf_tabletitle = new WritableCellFormat(
tableFont);
wcf_tabletitle.setBorder(Border.NONE,BorderLineStyle.THIN);
// 线条
wcf_tabletitle.setVerticalAlignment(VerticalAlignment.CENTRE); // 垂直对齐
wcf_tabletitle.setAlignment(Alignment.CENTRE); // 水平对齐
wcf_tabletitle.setWrap( true ); // 是否换行

// 用于正文左
WritableCellFormatwcf_left = new WritableCellFormat(NormalFont);
wcf_left.setBorder(Border.ALL,BorderLineStyle.THIN);
// 线条
wcf_left.setVerticalAlignment(VerticalAlignment.CENTRE); // 垂直对齐
wcf_left.setAlignment(Alignment.LEFT);
wcf_left.setWrap(
true ); // 是否换行

// 用于正文左
WritableCellFormatwcf_center = new WritableCellFormat(NormalFont);
wcf_center.setBorder(Border.ALL,BorderLineStyle.THIN);
// 线条
wcf_center.setVerticalAlignment(VerticalAlignment.CENTRE); // 垂直对齐
wcf_center.setAlignment(Alignment.CENTRE);
wcf_center.setWrap(
true ); // 是否换行

// 用于正文右
WritableCellFormatwcf_right = new WritableCellFormat(NormalFont);
wcf_right.setBorder(Border.ALL,BorderLineStyle.THIN);
// 线条
wcf_right.setVerticalAlignment(VerticalAlignment.CENTRE); // 垂直对齐
wcf_right.setAlignment(Alignment.RIGHT);
wcf_right.setWrap(
false ); // 是否换行

// 用于跨行
WritableCellFormatwcf_merge = new WritableCellFormat(NormalFont);
wcf_merge.setBorder(Border.ALL,BorderLineStyle.THIN);
// 线条
wcf_merge.setVerticalAlignment(VerticalAlignment.TOP); // 垂直对齐
wcf_merge.setAlignment(Alignment.LEFT);
wcf_merge.setWrap(
true ); // 是否换行

WritableCellFormatwcf_table
= new WritableCellFormat(NormalFont);
wcf_table.setBorder(Border.ALL,BorderLineStyle.THIN);
// 线条
wcf_table.setVerticalAlignment(VerticalAlignment.CENTRE); // 垂直对齐
wcf_table.setAlignment(Alignment.CENTRE);
wcf_table.setBackground(Colour.GRAY_25);
wcf_table.setWrap(
true ); // 是否换行

/***/ /** ************单元格格式设置完成****************** */
// 合并单元格,注意mergeCells(col0,row0,col1,row1)--列从0开始,col1为你要合并到第几列,行也一样
sheet.mergeCells( 0 , 0 , 5 , 0 );

sheet.addCell(
new Label( 0 , 0 , " 这里是大标题,自定义格式 " ,
wcf_title));

sheet.mergeCells(
0 , 1 , 1 , 1 );
sheet.mergeCells(
2 , 1 , 5 , 1 );

sheet.addCell(
new Label( 0 , 1 , "" ,wcf_center));
sheet.addCell(
new Label( 2 , 1 , " 姓名: " + " supercrsky " ,
wcf_center));

sheet.mergeCells(
0 , 2 , 1 , 2 );
sheet.mergeCells(
2 , 2 , 3 , 2 );

sheet.addCell(
new Label( 0 , 2 , " 单位: " ,wcf_center));
sheet.addCell(
new Label( 2 , 2 , " ChinaLong " ,wcf_center));
sheet.addCell(
new Label( 4 , 2 , " 薪水 " ,wcf_center));
sheet.addCell(
new Label( 5 , 2 , " 5000 " ,wcf_center));

sheet.mergeCells(
0 , 3 , 1 , 3 );
sheet.mergeCells(
2 , 3 , 3 , 3 );

sheet.addCell(
new Label( 0 , 3 , " 性别: " ,wcf_center));
sheet.addCell(
new Label( 2 , 3 , " " ,wcf_center));
sheet.addCell(
new Label( 4 , 3 , " 婚否: " ,wcf_center));
sheet.addCell(
new Label( 5 , 3 , " " ,wcf_center));

sheet.mergeCells(
0 , 4 , 1 , 4 );
sheet.mergeCells(
2 , 4 , 3 , 4 );

sheet.addCell(
new Label( 0 , 4 , " 是否在职: " ,wcf_center));
sheet.addCell(
new Label( 2 , 4 , " " ,
wcf_center));
sheet.addCell(
new Label( 4 , 4 , " 工作经验: " ,wcf_center));
sheet.addCell(
new Label( 5 , 4 , " 4 " ,wcf_center));

sheet.mergeCells(
0 , 5 , 1 , 5 );
sheet.mergeCells(
2 , 5 , 3 , 5 );

sheet.addCell(
new Label( 0 , 5 , " 保险费: " ,wcf_center));
sheet.addCell(
new Label( 2 , 5 , " 50 " ,
wcf_center));
sheet.addCell(
new Label( 4 , 5 , " 保险金额: " ,wcf_center));
sheet.addCell(
new Label( 5 , 5 , " 50000 " ,
wcf_center));

sheet.mergeCells(
0 , 6 , 1 , 6 );
sheet.mergeCells(
2 , 6 , 3 , 6 );

sheet.addCell(
new Label( 0 , 6 , " 工作地点: " ,wcf_center));
sheet.addCell(
new Label( 2 , 6 , " 北京 " ,wcf_center));
sheet.addCell(
new Label( 4 , 6 , " 开心度: " ,wcf_center));
sheet.addCell(
new Label( 5 , 6 , " 一般 " ,wcf_center));

// 另起一table
sheet.mergeCells( 0 , 7 , 5 , 7 );
sheet.addCell(
new Label( 0 , 7 , " 详细数据 " ,wcf_tabletitle));
// table标题
sheet.addCell( new Label( 0 , 8 , " 序号 " ,wcf_table));
sheet.addCell(
new Label( 1 , 8 , " 姓名 " ,wcf_table));
sheet.addCell(
new Label( 2 , 8 , " 年龄 " ,wcf_table));
sheet.addCell(
new Label( 3 , 8 , " 性别 " ,wcf_table));
sheet.addCell(
new Label( 4 , 8 , " 婚否 " ,wcf_table));
sheet.addCell(
new Label( 5 , 8 , " 在职 " ,wcf_table));
// table内容
// 这里用你的dao
TestDAOdao = new TestDAO();
Listlist
= dao.findBy(user.getUserId());
System.out.println(
" 此保单拥有防疫码数量: " + list.size());
for ( int i = 0 ;i < list.size();i ++ )
{
// 对应你的vo类
Userdata = (User)list.get(i);

sheet.addCell(
new Label( 0 , 9 + i,String.valueOf(i + 1 ),
wcf_center));
sheet.addCell(
new Label( 1 , 9 + i,data.getDlEPCode(),
wcf_center));
sheet
.addCell(
new Label( 2 , 9 + i,data.getDlType(),
wcf_center));
sheet.addCell(
new Label( 3 , 9 + i,String.valueOf(data
.getDlPigAge()),wcf_center));
sheet.addCell(
new Label( 4 , 9 + i, "" ,wcf_center));
sheet.addCell(
new Label( 5 , 9 + i, "" ,wcf_center));
}

/***/ /** **********以上所写的内容都是写在缓存中的,下一句将缓存的内容写到文件中******** */
workbook.write();
/***/ /** *********关闭文件************* */
workbook.close();
System.out.println(
" 导出成功 " );
// 存放url地址
}
catch (Exceptione)
{
System.out.println(
" 在输出到EXCEL的过程中出现错误,错误原因: " + e.toString());
}

}

完整源码可以在 这里下载
摘自【http://www.blogjava.net/supercrsky/archive/2008/05/21/201810.html】

<!-- Google Reader shared发布代码开始 --> <script type="text/javascript" src="http://www.google.com/reader/ui/publisher.js"></script><script type="text/javascript" src="http://www.google.com/reader/public/javascript/user/00697638153916680411/state/com.google/broadcast?n=5&amp;callback=GRC_p(%7Bc%3A%22green%22%2Ct%3A%22%5Cu8FD9%5Cu4E9B%5Cu6587%5Cu7AE0%5Cu4E5F%5Cu503C%5Cu5F97%5Cu4E00%5Cu770B%22%2Cs%3A%22false%22%7D)%3Bnew%20GRC"></script><!-- Google Reader shared发布代码结束 -->

能够操作excel的开源项目jexcelapi


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论