POI操作Excel详细解释,HSSF和XSSF两种方式
HSSF道路:
package com.tools.poi.lesson1; import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List; import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
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.HSSFColor;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle; import com.tools.poi.bean.Student; public class ExcelUtilWithHSSF {
public static void main(String[] args) {
try {
getExcelAsFile("aaa");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} // try {
// CreateExcelDemo1();
// } catch (ParseException e) {
// e.printStackTrace();
// } } /**
* 得到Excel,并解析内容
* @param file
* @throws FileNotFoundException
* @throws IOException
*/
public static void getExcelAsFile(String file) throws FileNotFoundException, IOException{
//1.得到Excel经常使用对象
// POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("d:/FTP/test.xls"));
POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("d:/FTP/new1.xls"));
//2.得到Excel工作簿对象
HSSFWorkbook wb = new HSSFWorkbook(fs);
//3.得到Excel工作表对象
HSSFSheet sheet = wb.getSheetAt(0);
//总行数
int trLength = sheet.getLastRowNum();
//4.得到Excel工作表的行
HSSFRow row = sheet.getRow(0);
//总列数
int tdLength = row.getLastCellNum();
//5.得到Excel工作表指定行的单元格
HSSFCell cell = row.getCell((short)1);
//6.得到单元格样式
CellStyle cellStyle = cell.getCellStyle();
for(int i=0;i<trLength;i++){
//得到Excel工作表的行
HSSFRow row1 = sheet.getRow(i);
for(int j=0;j<tdLength;j++){ //得到Excel工作表指定行的单元格
HSSFCell cell1 = row1.getCell(j); /**
* 为了处理:Excel异常Cannot get a text value from a numeric cell
* 将全部列中的内容都设置成String类型格式
*/
if(cell1!=null){
cell1.setCellType(Cell.CELL_TYPE_STRING);
} //获得每一列中的值
System.out.print(cell1.getStringCellValue()+"\t\t\t");
}
System.out.println();
}
} /**
* 创建Excel。并写入内容
*/
public static void CreateExcel(){ //1.创建Excel工作薄对象
HSSFWorkbook wb = new HSSFWorkbook();
//2.创建Excel工作表对象
HSSFSheet sheet = wb.createSheet("new Sheet");
//3.创建Excel工作表的行
HSSFRow row = sheet.createRow(6);
//4.创建单元格样式
CellStyle cellStyle =wb.createCellStyle();
// 设置这些样式
cellStyle.setFillForegroundColor(HSSFColor.SKY_BLUE.index);
cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
cellStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);
cellStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);
cellStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);
cellStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);
cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); //5.创建Excel工作表指定行的单元格
row.createCell(0).setCellStyle(cellStyle);
//6.设置Excel工作表的值
row.createCell(0).setCellValue("aaaa"); row.createCell(1).setCellStyle(cellStyle);
row.createCell(1).setCellValue("bbbb"); //设置sheet名称和单元格内容
wb.setSheetName(0,"第一张工作表");
//设置单元格内容 cell.setCellValue("单元格内容"); // 最后一步。将文件存到指定位置
try
{
FileOutputStream fout = new FileOutputStream("E:/students.xls");
wb.write(fout);
fout.close();
}
catch (Exception e)
{
e.printStackTrace();
}
} /**
* 创建Excel的实例
* @throws ParseException
*/
public static void CreateExcelDemo1() throws ParseException{
List list = new ArrayList();
SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd");
Student user1 = new Student(1, "张三", 16,true, df.parse("1997-03-12"));
Student user2 = new Student(2, "李四", 17,true, df.parse("1996-08-12"));
Student user3 = new Student(3, "王五", 26,false, df.parse("1985-11-12"));
list.add(user1);
list.add(user2);
list.add(user3); // 第一步。创建一个webbook,相应一个Excel文件
HSSFWorkbook wb = new HSSFWorkbook();
// 第二步,在webbook中加入一个sheet,相应Excel文件里的sheet
HSSFSheet sheet = wb.createSheet("学生表一");
// 第三步,在sheet中加入表头第0行,注意老版本号poi对Excel的行数列数有限制short
HSSFRow row = sheet.createRow((int) 0);
// 第四步,创建单元格,并设置值表头 设置表头居中
HSSFCellStyle style = wb.createCellStyle();
style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式 HSSFCell cell = row.createCell((short) 0);
cell.setCellValue("学号");
cell.setCellStyle(style);
cell = row.createCell((short) 1);
cell.setCellValue("姓名");
cell.setCellStyle(style);
cell = row.createCell((short) 2);
cell.setCellValue("年龄");
cell.setCellStyle(style);
cell = row.createCell((short) 3);
cell.setCellValue("性别");
cell.setCellStyle(style);
cell = row.createCell((short) 4);
cell.setCellValue("生日");
cell.setCellStyle(style); // 第五步,写入实体数据 实际应用中这些数据从数据库得到, for (int i = 0; i < list.size(); i++)
{
row = sheet.createRow((int) i + 1);
Student stu = (Student) list.get(i);
// 第四步。创建单元格,并设置值
row.createCell((short) 0).setCellValue((double) stu.getId());
row.createCell((short) 1).setCellValue(stu.getName());
row.createCell((short) 2).setCellValue((double) stu.getAge());
row.createCell((short)3).setCellValue(stu.getSex()==true?"男":"女");
cell = row.createCell((short) 4);
cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(stu
.getBirthday()));
}
// 第六步,将文件存到指定位置
try
{
FileOutputStream fout = new FileOutputStream("E:/students.xls");
wb.write(fout);
fout.close();
}
catch (Exception e)
{
e.printStackTrace();
} }
}
XSSF方式:
package com.tools.poi.lesson1; import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.List; import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
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.HSSFColor;
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
import org.apache.poi.poifs.filesystem.POIFSFileSystem;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.apache.poi.ss.util.WorkbookUtil; import com.tools.poi.bean.Student; public class ExcelUtilWithXSSF {
public static void main(String[] args) {
try {
getExcelAsFile("d:/FTP/系统报表.xls");
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (InvalidFormatException e) {
e.printStackTrace();
} // try {
// CreateExcelDemo1();
// } catch (ParseException e) {
// e.printStackTrace();
// } } /**
* 得到Excel,并解析内容 对2007及以上版本号 使用XSSF解析
* @param file
* @throws FileNotFoundException
* @throws IOException
* @throws InvalidFormatException
*/
public static void getExcelAsFile(String file) throws FileNotFoundException, IOException, InvalidFormatException{
// //1.得到Excel经常使用对象
// POIFSFileSystem fs = new POIFSFileSystem(new FileInputStream("d:/FTP/new1.xls"));
// //2.得到Excel工作簿对象
// HSSFWorkbook wb = new HSSFWorkbook(fs); InputStream ins = null;
Workbook wb = null;
ins=new FileInputStream(new File(file));
//ins= ExcelService.class.getClassLoader().getResourceAsStream(filePath);
wb = WorkbookFactory.create(ins);
ins.close(); //3.得到Excel工作表对象
Sheet sheet = wb.getSheetAt(0);
//总行数
int trLength = sheet.getLastRowNum();
//4.得到Excel工作表的行
Row row = sheet.getRow(0);
//总列数
int tdLength = row.getLastCellNum();
//5.得到Excel工作表指定行的单元格
Cell cell = row.getCell((short)1);
//6.得到单元格样式
CellStyle cellStyle = cell.getCellStyle(); for(int i=5;i<trLength;i++){
//得到Excel工作表的行
Row row1 = sheet.getRow(i);
for(int j=0;j<tdLength;j++){
//得到Excel工作表指定行的单元格
Cell cell1 = row1.getCell(j);
/**
* 为了处理:Excel异常Cannot get a text value from a numeric cell
* 将全部列中的内容都设置成String类型格式
*/
if(cell1!=null){
cell1.setCellType(Cell.CELL_TYPE_STRING);
} if(j==5&&i<=10){
cell1.setCellValue("1000");
} //获得每一列中的值
System.out.print(cell1+" ");
}
System.out.println();
} //将改动后的数据保存
OutputStream out = new FileOutputStream(file);
wb.write(out);
} /**
* 创建Excel,并写入内容
*/
public static void CreateExcel(){ //1.创建Excel工作薄对象
HSSFWorkbook wb = new HSSFWorkbook();
//2.创建Excel工作表对象
HSSFSheet sheet = wb.createSheet("new Sheet");
//3.创建Excel工作表的行
HSSFRow row = sheet.createRow(6);
//4.创建单元格样式
CellStyle cellStyle =wb.createCellStyle();
// 设置这些样式
cellStyle.setFillForegroundColor(HSSFColor.SKY_BLUE.index);
cellStyle.setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);
cellStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN);
cellStyle.setBorderLeft(HSSFCellStyle.BORDER_THIN);
cellStyle.setBorderRight(HSSFCellStyle.BORDER_THIN);
cellStyle.setBorderTop(HSSFCellStyle.BORDER_THIN);
cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); //5.创建Excel工作表指定行的单元格
row.createCell(0).setCellStyle(cellStyle);
//6.设置Excel工作表的值
row.createCell(0).setCellValue("aaaa"); row.createCell(1).setCellStyle(cellStyle);
row.createCell(1).setCellValue("bbbb"); //设置sheet名称和单元格内容
wb.setSheetName(0,"第一张工作表");
//设置单元格内容 cell.setCellValue("单元格内容"); // 最后一步,将文件存到指定位置
try
{
FileOutputStream fout = new FileOutputStream("E:/students.xls");
wb.write(fout);
fout.close();
}
catch (Exception e)
{
e.printStackTrace();
}
} /**
* 创建Excel的实例
* @throws ParseException
*/
public static void CreateExcelDemo1() throws ParseException{
List list = new ArrayList();
SimpleDateFormat df = new SimpleDateFormat("yyyy-mm-dd");
Student user1 = new Student(1, "张三", 16,true, df.parse("1997-03-12"));
Student user2 = new Student(2, "李四", 17,true, df.parse("1996-08-12"));
Student user3 = new Student(3, "王五", 26,false, df.parse("1985-11-12"));
list.add(user1);
list.add(user2);
list.add(user3); // 第一步,创建一个webbook,相应一个Excel文件
HSSFWorkbook wb = new HSSFWorkbook();
// 第二步,在webbook中加入一个sheet,相应Excel文件里的sheet
HSSFSheet sheet = wb.createSheet("学生表一");
// 第三步,在sheet中加入表头第0行,注意老版本号poi对Excel的行数列数有限制short
HSSFRow row = sheet.createRow((int) 0);
// 第四步,创建单元格,并设置值表头 设置表头居中
HSSFCellStyle style = wb.createCellStyle();
style.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 创建一个居中格式 HSSFCell cell = row.createCell((short) 0);
cell.setCellValue("学号");
cell.setCellStyle(style);
cell = row.createCell((short) 1);
cell.setCellValue("姓名");
cell.setCellStyle(style);
cell = row.createCell((short) 2);
cell.setCellValue("年龄");
cell.setCellStyle(style);
cell = row.createCell((short) 3);
cell.setCellValue("性别");
cell.setCellStyle(style);
cell = row.createCell((short) 4);
cell.setCellValue("生日");
cell.setCellStyle(style); // 第五步,写入实体数据 实际应用中这些数据从数据库得到。 for (int i = 0; i < list.size(); i++)
{
row = sheet.createRow((int) i + 1);
Student stu = (Student) list.get(i);
// 第四步。创建单元格,并设置值
row.createCell((short) 0).setCellValue((double) stu.getId());
row.createCell((short) 1).setCellValue(stu.getName());
row.createCell((short) 2).setCellValue((double) stu.getAge());
row.createCell((short)3).setCellValue(stu.getSex()==true?"男":"女");
cell = row.createCell((short) 4);
cell.setCellValue(new SimpleDateFormat("yyyy-mm-dd").format(stu
.getBirthday()));
}
// 第六步,将文件存到指定位置
try
{
FileOutputStream fout = new FileOutputStream("E:/students.xls");
wb.write(fout);
fout.close();
}
catch (Exception e)
{
e.printStackTrace();
} }
}
注意:
改动Excel中的某个内容:
cell1.setCellValue("1000");
保存改动后的Excel文件:
OutputStream out = new FileOutputStream(file);
wb.write(out);
版权声明:本文博客原创文章。博客,未经同意,不得转载。
POI操作Excel详细解释,HSSF和XSSF两种方式的更多相关文章
- POI操作Excel详解,HSSF和XSSF两种方式
package com.tools.poi.lesson1; import java.io.FileInputStream; import java.io.FileNotFoundException; ...
- POI操作Excel导入和导出
Apache的POI组件是Java操作Microsoft Office办公套件的强大API,当中对Word,Excel和PowperPoint都有支持,当然使用较多的还是Excel.由于Word和Po ...
- 自己的包poi操作Excel工具
在前面的文章<使用poi读写Excel>中分享了一下poi操作Excel的简单演示样例.这次要分享一下我封装的一个Excel操作的工具类. 该工具类主要完毕的功能是:读取Excel.汇总E ...
- 自己封装的poi操作Excel工具类
自己封装的poi操作Excel工具类 在上一篇文章<使用poi读写Excel>中分享了一下poi操作Excel的简单示例,这次要分享一下我封装的一个Excel操作的工具类. 该工具类主要完 ...
- poi操作excel的基本用法
这周公司要用excel作为数据存储格式做一个文具申请的功能,感觉以前本来很简单的功能变复杂了不少,但是还是记录一下一些excel的基本用法. 写在最前面:这里只介绍一些excel的基本存储方式(读,写 ...
- POI操作Excel(xls、xlsx)
阿帕奇官网:http://poi.apache.org/ POI3.17下载:http://poi.apache.org/download.html#POI-3.17 POI操作Excel教程(易百教 ...
- java使用POI操作excel文件,实现批量导出,和导入
一.POI的定义 JAVA中操作Excel的有两种比较主流的工具包: JXL 和 POI .jxl 只能操作Excel 95, 97, 2000也即以.xls为后缀的excel.而poi可以操作Exc ...
- java里poi操作excel的工具类(兼容各版本)
转: java里poi操作excel的工具类(兼容各版本) 下面是文件内具体内容,文件下载: import java.io.FileNotFoundException; import java.io. ...
- 利用Apache POI操作Excel
最近在做接口,有个功能是利用Excel导入汽车发动机所需零件信息到线上系统中.简单回顾一下之前学过的用java操作Excel. 1.maven配置Apache POI pom.xml中配置POIjar ...
随机推荐
- 解决LINUX vncserver 启动 could not open default font 'fixed'错.
安装vncserver例如,会发生以下错误: vncext: VNC extension running! vncext: Listening for VNC connecti ...
- andriod 在windows配置环境
andriod开发环境配置 个人信息:就读于燕大本科软件project专业 眼下大四; 本人博客:google搜索"cqs_2012"就可以; 个人爱好:酷爱数据结构和算法,希望将 ...
- ProgressDialog(三)——代号为中心的屏幕上显示ProgressDialog(ProgressBar)
MainActivity如下面: package cc.testprogressdialog; import android.os.Bundle; import android.view.Gravit ...
- python使用smtplib库和smtp.qq.com邮件服务器发送邮件(转)
使用qq的邮件服务器需要注意的两个地方主要是: 1.协议问题 使用465端口 SSL 协议 2.口令问题 出现SMTPAuthenticationError 主要的原因就是口令和帐号信息不对,这里我们 ...
- hello nodejs
文章1一步:下载.安装文件 打开nodejs官方网站http://www.nodejs.org/download/ .选择须要的版本号.直接打开.默认安装就可以 第二步:编写測试代码: var htt ...
- hdu4419 Colourful Rectangle 12年杭州网络赛 扫描线+线段树
题意:给定n个矩形,每个矩形有一种颜色,RGB中的一种.相交的部分可能为RG,RB,GB,RGB,问这n个矩形覆盖的面积中,7种颜色的面积分别为多少 思路:把x轴离散化做扫描线,线段树维护一个扫描区间 ...
- 十天学Linux内核之第二天---进程
原文:十天学Linux内核之第二天---进程 都说这个主题不错,连我自己都觉得有点过大了,不过我想我还是得坚持下去,努力在有限的时间里学习到Linux内核的奥秘,也希望大家多指点,让我更有进步.今天讲 ...
- cocos2d 缓存池 对象的再利用
1.简单的叙述说明池 例如,我们知道,游戏的游戏类型跑酷,游戏元素都在不断重复.游戏的内容将继续从屏幕右侧的创建,当元件在屏幕的左侧的,将消失.假设不变new 对象.release 对象 性能影响.怎 ...
- linux_windows下配置tomcat区别 ,不同子域名映射不同 项目
windows下 均为修改tomcat/bin/server.xml 在最后 替换 注意 docBase / <Realm className="org.apache.catalina ...
- CQRS(命令查询职责分离)和 EDA(事件驱动架构)
转载CQRS(命令查询职责分离)和 EDA(事件驱动架构) 上一篇:<IDDD 实现领域驱动设计-SOA.REST 和六边形架构> 阅读目录: CQRS-命令查询职责分离 EDA-事件驱动 ...