java实现excel的导入导出(poi详解)[转]
经过两天的研究,现在对excel导出有点心得了。我们使用的excel导出的jar包是poi这个阿帕奇公司的一个项目,后来被扩充了。是比较好用的excel导出工具。
下面来认识一下这个它吧。
我们知道要创建一张excel你得知道excel由什么组成,比如说sheet也就是一个工作表格,例如一行,一个单元格,单元格格式,单元格内容格式…这些都对应着poi里面的一个类。
一个excel表格:
HSSFWorkbook wb = new HSSFWorkbook(); |
一个工作表格(sheet):
HSSFSheet sheet = wb.createSheet("测试表格"); |
一行(row):
HSSFRow row1 = sheet.createRow(0); |
一个单元格(cell):
HSSFCell cell2 = row2.createCell((short)0) |
单元格格式(cellstyle):
HSSFCellStyle style4 = wb.createCellStyle() |
单元格内容格式()
HSSFDataFormat format= wb.createDataFormat(); |
知道上面的基本知识后下面学起来就轻松了。我直接贴代码,这段代码会产生一个表格其实,代码长,但是很简单,一看就明白
- import ins.framework.dao.GenericDaoHibernate;
- import java.io.FileOutputStream;
- import java.io.IOException;
- import java.sql.Connection;
- import java.sql.ResultSet;
- import java.sql.SQLException;
- import java.sql.Statement;
- import java.util.ArrayList;
- import java.util.Date;
- import java.util.List;
- import javax.annotation.Resource;
- import org.apache.poi.hssf.usermodel.HSSFCell;
- import org.apache.poi.hssf.usermodel.HSSFCellStyle;
- import org.apache.poi.hssf.usermodel.HSSFDataFormat;
- import org.apache.poi.hssf.usermodel.HSSFRow;
- import org.apache.poi.hssf.usermodel.HSSFSheet;
- import org.apache.poi.hssf.usermodel.HSSFWorkbook;
- import org.apache.poi.hssf.util.Region;
- import org.apache.poi.ss.usermodel.Font;
- import org.hibernate.HibernateException;
- import org.hibernate.SQLQuery;
- import org.hibernate.Session;
- import org.springframework.orm.hibernate3.HibernateCallback;
- import org.springframework.orm.hibernate3.HibernateTemplate;
- import org.springframework.stereotype.Component;
- import com.reportforms.service.facade.FundDayDetailService;
- @Component("fundDayDetailService")
- public class FundDayDetailsServiceSpringImpl implements FundDayDetailService {
- @Resource
- private HibernateTemplate hibernateTemplate;
- public HibernateTemplate getHibernateTemplate() {
- return hibernateTemplate;
- }
- public void setHibernateTemplate(HibernateTemplate hibernateTemplate) {
- this.hibernateTemplate = hibernateTemplate;
- }
- @SuppressWarnings("deprecation")
- public void outExcel(String fundsType, Date tradeDate, String assetsTypeCode){
- HSSFWorkbook wb = new HSSFWorkbook(); //--->创建了一个excel文件
- HSSFSheet sheet = wb.createSheet("理财资金报表"); //--->创建了一个工作簿
- HSSFDataFormat format= wb.createDataFormat(); //--->单元格内容格式
- sheet.setColumnWidth((short)3, 20* 256); //---》设置单元格宽度,因为一个单元格宽度定了那么下面多有的单元格高度都确定了所以这个方法是sheet的
- sheet.setColumnWidth((short)4, 20* 256); //--->第一个参数是指哪个单元格,第二个参数是单元格的宽度
- sheet.setDefaultRowHeight((short)300); // ---->有得时候你想设置统一单元格的高度,就用这个方法
- //样式1
- HSSFCellStyle style = wb.createCellStyle(); // 样式对象
- style.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);// 垂直
- style.setAlignment(HSSFCellStyle.ALIGN_CENTER);// 水平
- //设置标题字体格式
- Font font = wb.createFont();
- //设置字体样式
- font.setFontHeightInPoints((short)20); //--->设置字体大小
- font.setFontName("Courier New"); //---》设置字体,是什么类型例如:宋体
- font1.setItalic(true); //--->设置是否是加粗
- style1.setFont(font1); //--->将字体格式加入到style1中
- //style1.setFillForegroundColor(IndexedColors.DARK_YELLOW.getIndex());
- //style1.setFillPattern(CellStyle.SOLID_FOREGROUND);设置单元格颜色
- style1.setWrapText(true); //设置是否能够换行,能够换行为true
- style1.setBorderBottom((short)1); //设置下划线,参数是黑线的宽度
- style1.setBorderLeft((short)1); //设置左边框
- style1.setBorderRight((short)1); //设置有边框
- style1.setBorderTop((short)1); //设置下边框
- style4.setDataFormat(format.getFormat("¥#,##0")); //--->设置为单元格内容为货币格式
- style5.setDataFormat(HSSFDataFormat.getBuiltinFormat("0.00%")); //--->设置单元格内容为百分数格式
- //表格第一行
- HSSFRow row1 = sheet.createRow(0); //--->创建一行
- // 四个参数分别是:起始行,起始列,结束行,结束列
- sheet.addMergedRegion(new Region(0, (short) 0, 0, (short) 15));
- row1.setHeightInPoints(25);
- HSSFCell cell1 = row1.createCell((short)0); //--->创建一个单元格
- cell1.setCellStyle(style);
- cell1.setCellValue("总公司资金运用日报明细表(理财资金)");
- //表格第二行
- sheet.addMergedRegion(new Region(1,(short)0,1,(short)15));
- HSSFRow row2 = sheet.createRow(1);
- HSSFCell cell2 = row2.createCell((short)0);
- cell2.setCellValue("报告日期:"+new Date());
- cell2.setCellStyle(style2);
- //表格第三行
- sheet.addMergedRegion(new Region(2,(short)0,2,(short)15));
- HSSFRow row3 = sheet.createRow(2);
- HSSFCell cell3 = row3.createCell((short)0);
- cell3.setCellValue("交易日期:"+new Date());
- cell3.setCellStyle(style2);
- //表格第四行
- sheet.addMergedRegion(new Region(3, (short)0, 3, (short)2));
- HSSFRow row4 = sheet.createRow(3);
- row4.setHeightInPoints((short)75);
- HSSFCell cell4 = row4.createCell((short)0);
- HSSFCell cell4_0_1 = row4.createCell((short)1);
- cell4_0_1.setCellStyle(style2);
- HSSFCell cell4_0_2 = row4.createCell((short)2);
- cell4_0_2.setCellStyle(style2);
- cell4.setCellStyle(style1);
- cell4.setCellValue("代码/品种");
- HSSFCell cell4_1 = row4.createCell((short)3);
- cell4_1.setCellStyle(style1);
- cell4_1.setCellValue("投资类型");
- HSSFCell cell4_2 = row4.createCell((short)4);
- cell4_2.setCellStyle(style1);
- cell4_2.setCellValue("证券账户");
- HSSFCell cell4_3 = row4.createCell((short)5);
- cell4_3.setCellStyle(style1);
- cell4_3.setCellValue("份额\n单位:元");
- HSSFCell cell4_4 = row4.createCell((short)6);
- cell4_4.setCellStyle(style1);
- cell4_4.setCellValue("结转总成本\n单位:元");
- HSSFCell cell4_5 = row4.createCell((short)7);
- cell4_5.setCellStyle(style1);
- cell4_5.setCellValue("总市值\n单位:元");
- HSSFCell cell4_6 = row4.createCell((short)8);
- cell4_6.setCellStyle(style1);
- cell4_6.setCellValue("结转成本价\n单位:元");
- HSSFCell cell4_7 = row4.createCell((short)9);
- cell4_7.setCellStyle(style1);
- cell4_7.setCellValue("市价\n单位:元");
- HSSFCell cell4_8 = row4.createCell((short)10);
- cell4_8.setCellStyle(style1);
- cell4_8.setCellValue("持有期收益\n单位:%");
- HSSFCell cell4_9 = row4.createCell((short)11);
- cell4_9.setCellStyle(style1);
- cell4_9.setCellValue("总收益率(总收益/结转总成本)\n单位:%");
- HSSFCell cell4_10 = row4.createCell((short)12);
- cell4_10.setCellStyle(style1);
- cell4_10.setCellValue("前一日涨跌幅\n单位:%");
- HSSFCell cell4_11 = row4.createCell((short)13);
- cell4_11.setCellStyle(style1);
- cell4_11.setCellValue("盈亏\n单位:元");
- HSSFCell cell4_12 = row4.createCell((short)14);
- cell4_12.setCellStyle(style1);
- cell4_12.setCellValue("以实现收益\n单位:元");
- HSSFCell cell4_13 = row4.createCell((short)15);
- cell4_13.setCellStyle(style1);
- cell4_13.setCellValue("浮盈(亏)+已实现收益\n单位:元");
- //第五行
- sheet.addMergedRegion(new Region(4, (short)0, 4, (short)2));
- HSSFRow row5 = sheet.createRow(4);
- HSSFCell cell5 = row5.createCell((short)0);
- HSSFCell cell5_1 = row5.createCell((short)1);
- cell5_1.setCellStyle(style2);
- HSSFCell cell5_2 = row5.createCell((short)2);
- cell5_2.setCellStyle(style2);
- cell5.setCellValue("投资资产合计");
- cell5.setCellStyle(style2);
- //第六行
- sheet.addMergedRegion(new Region(5, (short)0, 5, (short)2));
- HSSFRow row6 = sheet.createRow(5);
- HSSFCell cell6 = row6.createCell((short)0);
- HSSFCell cell6_1 = row6.createCell((short)1);
- cell6_1.setCellStyle(style2);
- HSSFCell cell6_2 = row6.createCell((short)2);
- cell6_2.setCellStyle(style2);
- cell6.setCellValue("2、股票");
- cell6.setCellStyle(style2);
- //第七行
- sheet.addMergedRegion(new Region(6, (short)0, 6, (short)2));
- HSSFRow row7 = sheet.createRow(6);
- HSSFCell cell7 = row7.createCell((short)0);
- HSSFCell cell7_1 = row7.createCell((short)1);
- cell7_1.setCellStyle(style2);
- HSSFCell cell7_2 = row7.createCell((short)2);
- cell7_2.setCellStyle(style2);
- cell7.setCellValue("2.1、境内A股");
- cell7.setCellStyle(style2);
- //第八行
- sheet.addMergedRegion(new Region(7, (short)0, 7, (short)2));
- HSSFRow row8 = sheet.createRow(7);
- HSSFCell cell8 = row8.createCell((short)0);
- HSSFCell cell8_1 = row8.createCell((short)1);
- cell8_1.setCellStyle(style2);
- HSSFCell cell8_2 = row8.createCell((short)2);
- cell8_2.setCellStyle(style2);
- cell8.setCellValue("非限售股");
- cell8.setCellStyle(style2);
- Connection conn = null;
- Statement sm = null;
- ResultSet rs = null;
- try{
- conn = hibernateTemplate.getSessionFactory().openSession().connection();
- sm = conn.createStatement();
- rs = sm.executeQuery(sql);
- int j = 0; //增加行
- while(rs.next()){
- HSSFRow rowN = sheet.createRow(8+j); //第9行...第n行
- List<String> list = new ArrayList<String>(); //存放每一行数据
- for(int i = 1 ; i <= 16 ; i++ ){
- list.add(rs.getString(i));
- }
- for(int k = 0 ; k < 16 ; k++){
- if(k<5){
- HSSFCell cellN = rowN.createCell((short)k);
- cellN.setCellStyle(style3);
- cellN.setCellValue(list.get(k));
- }
- if((k>=5 && k<=9)||(k>=13)){
- HSSFCell cellN = rowN.createCell((short)k);
- cellN.setCellStyle(style4);
- cellN.setCellValue(Double.parseDouble(list.get(k)));
- }
- if(k>=10 && k<= 12){
- HSSFCell cellN = rowN.createCell((short)k);
- cellN.setCellStyle(style5);
- cellN.setCellValue(Double.parseDouble(list.get(k)));
- }
- }
- j++;
- }
- }catch(Exception e){
- e.printStackTrace();
- }finally{
- if(rs != null){
- try {
- rs.close();
- } catch (SQLException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- if(sm != null){
- try {
- sm.close();
- } catch (SQLException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- if(conn != null){
- try {
- conn.close();
- } catch (SQLException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- }
- FileOutputStream fileOut = null;
- try{
- fileOut = new FileOutputStream("d:\\workbook.xls");
- wb.write(fileOut);
- //fileOut.close();
- System.out.print("OK");
- }catch(Exception e){
- e.printStackTrace();
- }
- finally{
- if(fileOut != null){
- try {
- fileOut.close();
- } catch (IOException e) {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- }
- }
- }
- }
java实现excel的导入导出(poi详解)[转]的更多相关文章
- mysql导入导出命令详解
mysql导入导出命令详解 该命令适用于临时备份操作. 一.导出数据库用mysqldump命令(注意mysql的安装路径,即此命令的路径): /usr/local/mysql/bin/ ---> ...
- java 中Excel的导入导出
部分转发原作者https://www.cnblogs.com/qdhxhz/p/8137282.html雨点的名字 的内容 java代码中的导入导出 首先在d盘创建一个xlsx文件,然后再进行一系列 ...
- JAVA对Excel的导入导出
今天需要对比2个excel表的内容找出相同:由于要学的还很多上手很慢所以在这做个分享希望对初学的有帮助: 先是pom的配置: <dependency> <groupId>org ...
- exp/expdp 与 imp/impdp命令导入导出数据库详解
一.exp命令导出数据库 如何使exp的帮助以不同的字符集显示:set nls_lang=simplified chinese_china.zhs16gbk,通过设置环境变量,可以让exp的帮助以中文 ...
- java实现excel的导入导出(poi详解)
经过两天的研究,现在对excel导出有点心得了.我们使用的excel导出的jar包是poi这个阿帕奇公司的一个项目,后来被扩充了.是比较好用的excel导出工具. 下面来认识一下这个它吧. 我们知道要 ...
- DS导入导出命令详解
1.导出例子如下:$DSHOME/../../Clients/istools/cli/istool export -dom dpapp01 -u edpusr -p edpusr -ar /home/ ...
- expdp impdp 数据库导入导出命令详解
一.创建逻辑目录,该命令不会在操作系统创建真正的目录,最好以system等管理员创建.create directory dpdata1 as 'd:\test\dump'; 二.查看管理理员目录(同时 ...
- poi实现excel的导入导出功能
Java使用poi实现excel的导入导出功能: 工具类ExcelUtil,用于解析和初始化excel的数据:代码如下 package com.raycloud.kmmp.item.service.u ...
- Java实现大批量数据导入导出(100W以上) -(三)超过25列Excel导出
前面一篇文章介绍大数据量导出实现: Java实现大批量数据导入导出(100W以上) -(二)导出 这篇文章在Excel列较少时,按以上实际验证能很快实现生成.但如果列较多时用StringTemplat ...
随机推荐
- ExtJs的事件机制Event(学员总结)
一.事件的三种绑定方式 1.HTML/DHTML 在标签中直接增加属性触发事件 [javascript] view plaincopy <script type="text/javas ...
- 【转载】逃离adapter的地狱-针对多个View type的组合实现方案
英文原文:JOE'S GREAT ADAPTER HELL ESCAPE 转载地址:http://www.jcodecraeer.com/a/anzhuokaifa/androidkaifa/2015 ...
- 判断iPhone和iPad 判断设备版本
//判断iPhone和iPad #define IS_IPHONE (!IS_IPAD) #define IS_IPAD (UI_USER_INTERFACE_IDIOM() != UIUserInt ...
- cas配置全攻略(转)
转:http://www.blogjava.net/tufanshu/archive/2011/01/21/343290.html 经过将近两天的测试,参考众多网友的贡献,终于完成了对cas的主要配置 ...
- undefined 和 null 的异同
在javascript中,undefined和Null是两个比较特殊的值.但有时候在判断时就有点迷糊.依个人浅见,整理如下: 1.数据类型 众多周知,在javascript中存在五种基本类型,即und ...
- 如何用angularjs制作一个完整的表格之一__创建简单表格
初步接手人生的第一个项目,需要用angularjs制作表格和实现各种功能,因此遇到了各种问题和以前不熟悉的知识点,在此记录下来,以供大家学习交流,解决方式可能并不完善或符合规范,如果大家有更好的方式欢 ...
- Automatically watermark all uploaded photos (给所有上传的相片加水印)
Hello, This mod automatically watermark all uploaded photos. Price: FREE, enjoy. You will have to ed ...
- C语言基础学习基本数据类型-浮点型
float和double 加了小数点的数都是浮点数.C语言有两种书写浮点数的方式,一种是使用常用的标准小数点表示法,如下: 0.00056 8.0 1.23 第二种表示浮点值叫做E表示法.下面是一些例 ...
- laravel框架——上传、下载文件
文件上传 在config文件夹下新建一个 项目名.php return [ 'title' => 'My Test', 'posts_per_page' => 5, 'uploads' = ...
- Scut:SocketListener 的解析
大致浏览了一遍,Scut 的网络模型采用的是 SAEA 模型, 它是 .NET Framework 3.5 开始支持的一种支持高性能 Socket 通信的实现. 通过分析 Scut 的套接字监听控制, ...