Java操作Excel表格
POI 和 easyExcel
常用信息
1、将用户信息导出为excel表格(导出数据… )
2、将Excel表中的信息录入到网站数据库(习题上传… )
开发中经常会设计到excel的处理,如导出Excel ,导入Excel到数据库中!
操作ExceI目前比较流行的就是Apache POI和阿里巴巴的easyExcel !
Apache POI
Apache POI 官网: https://poi.apache.org/
HSSF一提供读写Microsoft Excel格式档案的功能。
XSSF -提供读写Microsoft Excel OOXML格式档案的功能。
HWPF -提供读写Microsoft Word各式档案的功能。
HSLF -提供读写Microsof PowerPoint式档案的功能。
HDGF -提供读写Microsoft Visio格式档案的功能。
easyExcel
easyExcel官网:https://github.com/alibaba/easyexcel
POI-Excel写
创建项目
1、建立一个空项目
2、导入依赖
<!--xls(03)-->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi</artifactId>
<version>3.9</version>
</dependency>
<!--xlsx(07)-->
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>3.9</version>
</dependency>
<!--日期格式化工具-->
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.10.1</version>
</dependency>
<!--test-->
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.13</version>
<scope>test</scope>
</dependency>
03版本:
@Test
public void ExcelTset() throws IOException {
//1.创建一个工作簿
Workbook workbook = new HSSFWorkbook();
//2.创建一个工作表
Sheet sheet = workbook.createSheet("小说统计表");
//3.创建一个行
Row row1 = sheet.createRow(0);//(1,1)
//4.创建一个单元格
Cell cell11 = row1.createCell(0);
cell11.setCellValue("小说名字");
//(1,2)
Cell cell12 = row1.createCell(1);
cell12.setCellValue("遮天");
//第二行
Row row2 = sheet.createRow(1);
Cell cell21 = row2.createCell(0);
cell21.setCellValue("小说字数");
row2.createCell(1).setCellValue("200万字");
Row row3 = sheet.createRow(2);
Cell cell31 = row3.createCell(0);
cell31.setCellValue("日期");
row3.createCell(1).setCellValue(new Date());
//生成一张表
FileOutputStream fileOutputStream = new FileOutputStream(PATH + "小说03.xls");
workbook.write(fileOutputStream);
//关闭流
fileOutputStream.close();
System.out.println("表生成完毕");
}
07版本:
@Test
public void ExcelTset2() throws IOException {
//1.创建一个工作簿
Workbook workbook = new XSSFWorkbook();
//2.创建一个工作表
Sheet sheet = workbook.createSheet("小说统计表");
//3.创建一个行
Row row1 = sheet.createRow(0);//(1,1)
//4.创建一个单元格
Cell cell11 = row1.createCell(0);
cell11.setCellValue("小说名字");
//(1,2)
Cell cell12 = row1.createCell(1);
cell12.setCellValue("遮天");
//第二行
Row row2 = sheet.createRow(1);
Cell cell21 = row2.createCell(0);
cell21.setCellValue("小说字数");
row2.createCell(1).setCellValue("200万字");
Row row3 = sheet.createRow(2);
Cell cell31 = row3.createCell(0);
cell31.setCellValue("日期");
row3.createCell(1).setCellValue(new Date());
//生成一张表
FileOutputStream fileOutputStream = new FileOutputStream(PATH + "小说07.xlsx");
workbook.write(fileOutputStream);
//关闭流
fileOutputStream.close();
System.out.println("表生成完毕");
}
注意对象的区别,文件后缀!
大文件写HSSF
@Test
public void ExcelBig() throws IOException {
//时间
long begin = System.currentTimeMillis();
Workbook workbook = new HSSFWorkbook();
Sheet sheet = workbook.createSheet();
for (int rowNum = 0; rowNum < 65536; rowNum++) {
Row row = sheet.createRow(rowNum);
for (int cellNum = 0; cellNum < 10; cellNum++) {
Cell cell = row.createCell(cellNum);
cell.setCellValue(cellNum);
}
}
System.out.println("Over");
FileOutputStream fileOutputStream = new FileOutputStream(PATH + "bigData03.xls");
workbook.write(fileOutputStream);
fileOutputStream.close();
long end = System.currentTimeMillis();
System.out.println((float) (end-begin)/1000);
}
缺点:最多只能处理65536行,否则会抛出异常
优点:过程中写入缓存,不操作磁盘,最后一次性写入磁盘,速度快
大文件写XSSF
@Test
public void ExcelBig2() throws IOException {
//时间
long begin = System.currentTimeMillis();
Workbook workbook = new XSSFWorkbook();
Sheet sheet = workbook.createSheet();
for (int rowNum = 0; rowNum < 100000; rowNum++) {
Row row = sheet.createRow(rowNum);
for (int cellNum = 0; cellNum < 10; cellNum++) {
Cell cell = row.createCell(cellNum);
cell.setCellValue(cellNum);
}
}
System.out.println("Over");
FileOutputStream fileOutputStream = new FileOutputStream(PATH + "bigData07.xlsx");
workbook.write(fileOutputStream);
fileOutputStream.close();
long end = System.currentTimeMillis();
System.out.println((float) (end-begin)/1000);
}
缺点:写数据时速度非常慢,非常耗内存,也会发生内存溢出,如100万条
优点:可以写较大的数据量,如20万条
大文件写SXSSF
@Test
public void ExcelBig3S() throws IOException {
//时间
long begin = System.currentTimeMillis();
Workbook workbook = new SXSSFWorkbook();
Sheet sheet = workbook.createSheet();
for (int rowNum = 0; rowNum < 100000; rowNum++) {
Row row = sheet.createRow(rowNum);
for (int cellNum = 0; cellNum < 10; cellNum++) {
Cell cell = row.createCell(cellNum);
cell.setCellValue(cellNum);
}
}
System.out.println("Over");
FileOutputStream fileOutputStream = new FileOutputStream(PATH + "bigData07S.xlsx");
workbook.write(fileOutputStream);
fileOutputStream.close();
//清除零时文
((SXSSFWorkbook)workbook).dispose();
long end = System.currentTimeMillis();
System.out.println((float) (end-begin)/1000);
}
优点:可以写非常大的数据量,如100万条甚更多条,写数据速度快,占用更少的内存
注意:
过程中会产生临时文件,需要清理临时文件
默认由100条记录被保存在内存中,如果超过这数量,则最前面的数据被写入临时文件
如果想自定义内存中数据的数量,可以使用new SXSSFWorkbook (数量)
SXSSFWorkbook
来至官方的解释:实现
BigGridDemo
策略的流式XSSFWorkbook版本。这允许写入非常大的文件而不会耗尽内存,因为任何时候只有可配置的行部分被保存在内存中。
请注意,仍然可能会消耗大量内存,这些内存基于您正在使用的功能,例如合并区域,注…仍然只存储在内存中,因此如果广泛使用,可能需要大量内存.
POI-Excel读
03版本
@Test
public void Read03Test() throws IOException {
FileInputStream inputStream = new FileInputStream(PATH + "poi_writebigData03.xls");
Workbook workbook = new HSSFWorkbook(inputStream);
//得到表
Sheet sheetAt = workbook.getSheetAt(0);
//得到行
Row row = sheetAt.getRow(0);
//得到列
Cell cell = row.getCell(1);
System.out.println(cell.getNumericCellValue());
inputStream.close();
}
07版本
@Test
public void Read07Test() throws IOException {
FileInputStream inputStream = new FileInputStream(PATH + "poi_writebigData07.xlsx");
Workbook workbook = new XSSFWorkbook(inputStream);
//得到表
Sheet sheetAt = workbook.getSheetAt(0);
//得到行
Row row = sheetAt.getRow(0);
//得到列
Cell cell = row.getCell(1);
System.out.println(cell.getNumericCellValue());
inputStream.close();
}
注意:获取数据类型
读取不同的数据类型
@Test
public void test3() throws IOException {
//获取文件流
FileInputStream inputStream = new FileInputStream("D:\\搜狗高速下载\\商品信息.xlsx");
//创建一个工作簿
Workbook workbook = new XSSFWorkbook(inputStream);
Sheet sheet = workbook.getSheetAt(0);
//获取标题内容
Row rowTitle = sheet.getRow(0);
if (rowTitle != null){
//有多少列信息
int cellCount = rowTitle.getPhysicalNumberOfCells();
for (int cellNum = 0; cellNum < cellCount; cellNum++) {
//获取第一行的每一列的信息
Cell cell = rowTitle.getCell(cellNum);
if (cell != null){
int cellType = cell.getCellType();
String stringCellValue = cell.getStringCellValue();
System.out.print(stringCellValue+" | ");
}
}
System.out.println();
}
//获取表中的内容
int rowCount = sheet.getPhysicalNumberOfRows();
for (int rowNum = 1; rowNum < rowCount; rowNum++) {
Row rowData = sheet.getRow(rowNum);
if (rowData != null){
//读取列
int cellCount = rowTitle.getPhysicalNumberOfCells();
for (int cellNum = 0; cellNum < cellCount; cellNum++) {
System.out.print("["+(rowNum+1)+"-"+(cellNum+1)+"]");
Cell cell = rowData.getCell(cellNum);
//匹配列的数据类型
if (cell != null){
int cellType = cell.getCellType();
String cellValue="";
switch (cellType){
case XSSFCell.CELL_TYPE_STRING://字符串
System.out.println("[String]");
cellValue = cell.getStringCellValue();
break;
case XSSFCell.CELL_TYPE_BOOLEAN://布尔
System.out.println("[Boolean]");
boolean booleanCellValue = cell.getBooleanCellValue();
cellValue = String.valueOf(booleanCellValue);
break;
case XSSFCell.CELL_TYPE_BLANK://空
System.out.println("[BLANK]");
break;
case XSSFCell.CELL_TYPE_NUMERIC://数字
System.out.println("[NUMERIC]");
if (HSSFDateUtil.isCellDateFormatted(cell)){//日期
System.out.println("日期");
Date dateCellValue = cell.getDateCellValue();
cellValue = new DateTime(dateCellValue).toString("yyyy-MM-dd hh:mm:ss");
}else {
//不是日期格式,防止数字过长
System.out.println("转化为字符串输出");
cell.setCellType(XSSFCell.CELL_TYPE_STRING);
cellValue = cell.toString();
// double numericCellValue = cell.getNumericCellValue();
// cellValue = String.valueOf(numericCellValue);
}
break;
case XSSFCell.CELL_TYPE_ERROR://错误
System.out.println("[数据类型错误]");
break;
}
System.out.println(cellValue);
}
}
}
}
inputStream.close();
}
计算公式
@Test
public void test4() throws IOException {
FileInputStream inputStream = new FileInputStream("D:\\C盘的应用\\新建 Microsoft Excel 工作表.xlsx");
Workbook workbook = new XSSFWorkbook(inputStream);
Sheet sheet = workbook.getSheetAt(0);
Row row = sheet.getRow(5);
Cell cell = row.getCell(0);
//取出计算公式 eval
XSSFFormulaEvaluator formulaEvaluator = new XSSFFormulaEvaluator((XSSFWorkbook) workbook);
//输出单元格的内容
int cellType = cell.getCellType();
switch (cellType){
case Cell.CELL_TYPE_FORMULA://公式
String formula = cell.getCellFormula();
System.out.println(formula);
//计算
CellValue evaluate = formulaEvaluator.evaluate(cell);
String value = evaluate.formatAsString();
System.out.println(value);
}
inputStream.close();
}
EasyExcel操作
导入依赖
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>easyexcel</artifactId>
<version>2.2.10</version>
</dependency>
写入测试
/**
* 最简单的写
* <p>1. 创建excel对应的实体对象 参照{@link DemoData}
*/
@Test
public void simpleWrite() {
// 写法1
String fileName = PATH+"WriteTest.xlsx";
// 这里 需要指定写用哪个class去写,然后写到第一个sheet,名字为模板 然后文件流会自动关闭
//write(fileName,格式类)
//sheet(表名)
//doWriter(数据)
EasyExcel.write(fileName, DemoData.class).sheet("模板").doWrite(data());
}
读取测试
/**
* 最简单的读
* <p>1. 创建excel对应的实体对象 参照{@link DemoData}
* <p>2. 由于默认一行行的读取excel,所以需要创建excel一行一行的回调监听器,参照{@link DemoDataListener}
* <p>3. 直接读即可
*/
@Test
public void simpleRead() {
// 有个很重要的点 DemoDataListener 不能被spring管理,要每次读取excel都要new,然后里面用到spring可以构造方法传进去
// 写法1:
String fileName = PATH+"WriteTest.xlsx";
// 这里 需要指定读用哪个class去读,然后读取第一个sheet 文件流会自动关闭
EasyExcel.read(fileName, DemoData.class, new DemoDataListener()).sheet().doRead();
}
固定套路:
1、写入,固定类格式写入
2、读取,根据监听器设置的规则进行读取!