poi读取excel的列和删除列
(各自根据具体的poi版本进行相应的替换即可) package com.br.loan.strategy.common.utils; import lombok.extern.slf4j.Slf4j;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.*;
import org.apache.poi.xssf.streaming.SXSSFSheet;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook; import java.io.*;
import java.util.*; /**
* @Company:
* @Author: shaobin.fu
* @Date: 2018/9/6 16:33
* @Description:
*/
@Slf4j
public class Excel {
//总行数
private int totalRows = 0;
//总列数
private int totalCells = 0;
//错误信息
private String errorInfo; public Excel() {
} //得到总行数
public int getTotalRows() {
return totalRows;
} //得到总行数
public int getTotalCells() {
return totalCells;
} //得到错误信息
public String getErrorInfo() {
return errorInfo;
} /**
* @描述:验证excel文件
* @时间:2012-08-29 下午16:27:15
* @参数:@param filePath 文件完整路径
* @参数:@return
* @返回值:boolean
*/
public boolean validateExcel(String filePath) {
/** 检查文件名是否为空或者是否是Excel格式的文件 */
if (filePath == null || !(WDWUtil.isExcel2003(filePath) || WDWUtil.isExcel2007(filePath))) {
errorInfo = "文件名不是excel格式";
return false;
}
/** 检查文件是否存在 */
File file = new File(filePath);
if (file == null || !file.exists()) {
errorInfo = "文件不存在";
return false;
}
return true;
} /**
* @描述:根据文件名读取excel文件
* @时间:2012-08-29 下午16:27:15
* @参数:@param filePath 文件完整路径
* @参数:@return
* @返回值:List
*/
public List<List<String>> read(String filePath) {
List<List<String>> dataLst = new ArrayList<List<String>>();
InputStream is = null;
try {
/** 验证文件是否合法 */
if (!validateExcel(filePath)) {
System.out.println(errorInfo);
return null;
}
/** 判断文件的类型,是2003还是2007 */
boolean isExcel2003 = true;
if (WDWUtil.isExcel2007(filePath)) {
isExcel2003 = false;
}
/** 调用本类提供的根据流读取的方法 */
File file = new File(filePath);
is = new FileInputStream(file);
dataLst = read(is, isExcel2003);
is.close();
} catch (Exception ex) {
ex.printStackTrace();
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
is = null;
e.printStackTrace();
}
}
}
/** 返回最后读取的结果 */
return dataLst;
} /**
* @描述:根据文件名读取excel文件,以列讀取
* @时间:2012-08-29 下午16:27:15
* @参数:@param filePath 文件完整路径
* @参数:@return
* @返回值:List
*/ /*public Map<Integer, Integer> readByColumn(String filePath) { Map<Integer, Integer> dataLst = new HashMap<>();
InputStream is = null;
try {
*//** 验证文件是否合法 *//*
if (!validateExcel(filePath)) {
System.out.println(errorInfo);
return null;
}
*//** 判断文件的类型,是2003还是2007 *//*
boolean isExcel2003 = true;
if (WDWUtil.isExcel2007(filePath)) {
isExcel2003 = false;
}
*//** 调用本类提供的根据流读取的方法 *//*
File file = new File(filePath);
is = new FileInputStream(file);
dataLst = readByColumn(is, isExcel2003);
is.close();
} catch (Exception ex) {
ex.printStackTrace();
} finally {
if (is != null) {
try {
is.close();
} catch (IOException e) {
is = null;
e.printStackTrace();
}
}
}
*//** 返回最后读取的结果 *//*
return dataLst;
}*/ /**
* @描述:根据流读取Excel文件
* @时间:2012-08-29 下午16:40:15
* @参数:@param inputStream
* @参数:@param isExcel2003
* @参数:@return
* @返回值:List
*/ public List<List<String>> read(InputStream inputStream, boolean isExcel2003) { List<List<String>> dataLst = null;
try {
/** 根据版本选择创建Workbook的方式 */
Workbook wb = null;
if (isExcel2003) {
wb = new HSSFWorkbook(inputStream);
} else {
wb = new XSSFWorkbook(inputStream);
}
dataLst = read(wb);
} catch (IOException e) {
e.printStackTrace();
}
return dataLst; } /**
* @描述:根据流读取Excel文件,以列讀取
* @时间:2012-08-29 下午16:40:15
* @参数:@param inputStream
* @参数:@param isExcel2003
* @参数:@return
* @返回值:List
*/ public Map<Integer, Integer> readByColumn(InputStream inputStream, boolean isExcel2003) {
Map<Integer, Integer> dataLst = null;
try {
/** 根据版本选择创建Workbook的方式 */
Workbook wb = null;
if (isExcel2003) {
wb = new HSSFWorkbook(inputStream);
} else {
wb = new XSSFWorkbook(inputStream);
}
dataLst = readByColumn(wb);
} catch (IOException e) {
e.printStackTrace();
}
return dataLst;
} /**
* @描述:读取数据,以行读取
* @时间:2012-08-29 下午16:50:15
* @参数:@param Workbook
* @参数:@return
* @返回值:List<List<String>>
*/ private List<List<String>> read(Workbook wb) { List<List<String>> dataLst = new ArrayList<List<String>>();
/** 得到第一个shell */
Sheet sheet = wb.getSheetAt(0);
/** 得到Excel的行数 */
this.totalRows = sheet.getPhysicalNumberOfRows();
/** 得到Excel的列数 */
if (this.totalRows >= 1 && sheet.getRow(0) != null) {
this.totalCells = sheet.getRow(0).getPhysicalNumberOfCells();
} /** 循环Excel的行 */ for (int r = 0; r < this.totalRows; r++) {
Row row = sheet.getRow(r);
if (row == null) {
continue;
}
List<String> rowLst = new ArrayList<String>(); /** 循环Excel的列 */
for (int c = 0; c < this.getTotalCells(); c++) {
Cell cell = row.getCell(c);
String cellValue = "";
if (null != cell) {
// 以下是判断数据的类型
switch (cell.getCellType()) {
case HSSFCell.CELL_TYPE_NUMERIC: // 数字
cellValue = cell.getNumericCellValue() + "";
break; case HSSFCell.CELL_TYPE_STRING: // 字符串
cellValue = cell.getStringCellValue();
break; case HSSFCell.CELL_TYPE_BOOLEAN: // Boolean
cellValue = cell.getBooleanCellValue() + "";
break; case HSSFCell.CELL_TYPE_FORMULA: // 公式
cellValue = cell.getCellFormula() + "";
break; case HSSFCell.CELL_TYPE_BLANK: // 空值
cellValue = "";
break; case HSSFCell.CELL_TYPE_ERROR: // 故障
cellValue = "非法字符";
break; default:
cellValue = "未知类型";
break;
}
}
rowLst.add(cellValue);
}
/** 保存第r行的第c列 */
dataLst.add(rowLst);
}
return dataLst;
} /**
* @描述:读取数据,以列读取
* @时间:2012-08-29 下午16:50:15
* @参数:@param Workbook
* @参数:@return
* @返回值:List<List<String>>
*/
public Map<Integer, Integer> readByColumn(SXSSFWorkbook wb) { Map<Integer, Integer> dataMap = new LinkedHashMap<>();
/** 得到第一个shell */
Sheet sheet = wb.getSheetAt(0);
/** 得到Excel的行数 */
this.totalRows = sheet.getPhysicalNumberOfRows();
/** 得到Excel的列数 */
if (this.totalRows >= 1 && sheet.getRow(0) != null) {
this.totalCells = sheet.getRow(0).getPhysicalNumberOfCells();
}
//从第九列开始
for (int lie = 9; lie <= totalCells; lie++) {
//设置为1,代表不需要删除,为0,则删除。
dataMap.put(lie, 0);
}
/** 循环Excel的行(不包括第一行) */
for (int r = 1; r < this.totalRows; r++) {
Row row = sheet.getRow(r);
if (row == null) {
continue;
}
/** 循环Excel的列 */
for (int c = 0; c < this.getTotalCells(); c++) {
Cell cell = row.getCell(c); if (null != cell&&StringUtils.isNotEmpty(cell)) {
dataMap.put(c+1, 1);
}
}
}
return dataMap;
}
/**
* @描述:读取sheet数据,以列读取
* @时间:2012-08-29 下午16:50:15
* @参数:@param Workbook
* @参数:@return
* @返回值:List<List<String>>
*/
public Map<Integer, Integer> readSheetByColumn(Sheet sheet) { Map<Integer, Integer> dataMap = new LinkedHashMap<>();
/** 得到第一个shell */
/** 得到Excel的行数 */
this.totalRows = sheet.getPhysicalNumberOfRows();
/** 得到Excel的列数 */
if (this.totalRows >= 1 && sheet.getRow(0) != null) {
this.totalCells = sheet.getRow(0).getPhysicalNumberOfCells();
}
//从第九列开始
for (int lie = 9; lie <= totalCells; lie++) {
//设置为1,代表不需要删除,为0,则删除。
dataMap.put(lie, 0);
}
/** 循环Excel的行(不包括第一行) */
for (int r = 1; r < this.totalRows; r++) {
Row row = sheet.getRow(r);
if (row == null) {
continue;
}
/** 循环Excel的列 */
for (int c = 0; c < this.getTotalCells(); c++) {
Cell cell = row.getCell(c); if (null != cell&&StringUtils.isNotEmpty(cell)) {
dataMap.put(c+1, 1);
}
}
}
return dataMap;
} /**
* 删除列
* @param sheet
* @param columnToDelete
*/
public void deleteColumn(SXSSFSheet sheet, int columnToDelete) {
for (int rId = 0; rId <= sheet.getLastRowNum(); rId++) {
Row row = sheet.getRow(rId);
for (int cID = columnToDelete; cID <= row.getLastCellNum(); cID++) {
Cell cOld = row.getCell(cID);
if (cOld != null) {
row.removeCell(cOld);
}
Cell cNext = row.getCell(cID + 1);
if (cNext != null) {
Cell cNew = row.createCell(cID, cNext.getCellTypeEnum());
cloneCell(cNew, cNext);
//Set the column width only on the first row.
//Other wise the second row will overwrite the original column width set previously.
if (rId == 0) {
sheet.setColumnWidth(cID, sheet.getColumnWidth(cID + 1)); }
}
}
}
} /**
* 右边列左移
* @param cNew
* @param cOld
*/
private void cloneCell(Cell cNew, Cell cOld) {
cNew.setCellComment(cOld.getCellComment());
cNew.setCellStyle(cOld.getCellStyle()); if (CellType.BOOLEAN == cNew.getCellTypeEnum()) {
cNew.setCellValue(cOld.getBooleanCellValue());
} else if (CellType.NUMERIC == cNew.getCellTypeEnum()) {
cNew.setCellValue(cOld.getNumericCellValue());
} else if (CellType.STRING == cNew.getCellTypeEnum()) {
cNew.setCellValue(cOld.getStringCellValue());
} else if (CellType.ERROR == cNew.getCellTypeEnum()) {
cNew.setCellValue(cOld.getErrorCellValue());
} else if (CellType.FORMULA == cNew.getCellTypeEnum()) {
cNew.setCellValue(cOld.getCellFormula());
}
} /**
* 读取第一行的cell数据
*/
public List<String> readFirstRow(SXSSFWorkbook wb) {
log.info("进入readFirstRow");
List<String> list = new ArrayList<>();
int totalColumn=0;
/** 得到第一个shell */
Sheet sheet = wb.getSheetAt(0);
/** 得到Excel的列数 */
if (sheet.getRow(0) != null) {
totalColumn = sheet.getRow(0).getPhysicalNumberOfCells();
log.info("totalColumn:{}",totalColumn);
for (int lie = 8; lie < totalColumn; lie++) {
log.info("lie:{}",sheet.getRow(0).getCell(lie).getStringCellValue());
list.add(sheet.getRow(0).getCell(lie).getStringCellValue());
}
}
log.info("readFirst的大小:{}",list.size());
return list;
} /*public static void main(String[] args) {
File file = new File("C:\\Users\\Bairong\\Desktop\\sjfksj.xlsx");
Excel excel = new Excel();
try {
FileInputStream is = new FileInputStream(file);
Workbook wb = new XSSFWorkbook(is);
Map<Integer, Integer> stringIntegerMap = excel.readByColumn(wb);
Iterator<Map.Entry<Integer, Integer>> it = stringIntegerMap.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<Integer, Integer> entry = it.next();
System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
if (entry.getValue()==0){
excel.deleteColumn(wb.getSheetAt(0),entry.getKey()-1);
}
} FileOutputStream fileOut = new FileOutputStream(file);
wb.write(fileOut);
fileOut.close();
//excel.deleteColumn(sheet,1);
System.out.println("删除成功");
} catch (Exception e) {
e.printStackTrace();
}
}*/
} /**
* @描述:工具类
* @时间:2012-08-29 下午16:30:40
*/ class WDWUtil { /**
* @描述:是否是2003的excel,返回true是2003
* @时间:2012-08-29 下午16:29:11
* @参数:@param filePath 文件完整路径
* @参数:@return
* @返回值:boolean
*/ public static boolean isExcel2003(String filePath) { return filePath.matches("^.+\\.(?i)(xls)$"); } /**
* @描述:是否是2007的excel,返回true是2007
* @时间:2012-08-29 下午16:28:20
* @参数:@param filePath 文件完整路径
* @参数:@return
* @返回值:boolean
*/ public static boolean isExcel2007(String filePath) { return filePath.matches("^.+\\.(?i)(xlsx)$"); } public static void main(String[] args) {
List list1 = new ArrayList();
List list2 = new ArrayList();
list1.add("乾隆");
list1.add("李世民");
list2.add("康熙");
list2.add("李世");
for(int i=0;i<list1.size();i++){
if (list1.contains(list2.get(i))){
System.out.println("结果为true");
}else {
System.out.println("不等");
}
} } }
poi读取excel的列和删除列的更多相关文章
- 使用jxl,poi读取excel文件
作用:在java后台添加一个方法,读取导入的excel内容,根据需要返回相应的sql语句,以完成对临时表的插入操作. 使用jxl读取excel文件 package com.sixthf.bi.sapp ...
- java用poi读取Excel表格中的数据
Java读写Excel的包是Apache POI(项目地址:http://poi.apache.org/),因此需要先获取POI的jar包,本实验使用的是POI 3.9稳定版.Apache POI 代 ...
- Java开发小技巧(六):使用Apache POI读取Excel
前言 在数据仓库中,ETL最基础的步骤就是从数据源抽取所需的数据,这里所说的数据源并非仅仅是指数据库,还包括excel.csv.xml等各种类型的数据接口文件,而这些文件中的数据不一定是结构化存储的, ...
- POI读取Excel数据
POI读取Excel表格数据 * {所需相关jar下载: * commons-collections4-4.4.jar * commons-compress-1.19.jar * poi-4.1.1. ...
- POI读取Excel内容格式化
在用POI读取Excel内容时,经常会遇到数据格式化的问题. 比如:数字12365会变为12365.0;字符串数字123也会变为123.0,甚至会被变为科学计数法.另外日期格式化也是一个头疼的问题.其 ...
- java使用poi读取ppt文件和poi读取excel、word示例
java使用poi读取ppt文件和poi读取excel.word示例 http://www.jb51.net/article/48092.htm
- JAVA使用POI读取EXCEL文件的简单model
一.JAVA使用POI读取EXCEL文件的简单model 1.所需要的jar commons-codec-1.10.jarcommons-logging-1.2.jarjunit-4.12.jarlo ...
- 项目一:第四天 1、快递员的条件分页查询-noSession,条件查询 2、快递员删除(逻辑删除) 3、基于Apache POI实现批量导入区域数据 a)Jquery OCUpload上传文件插件使用 b)Apache POI读取excel文件数据
1. 快递员的条件分页查询-noSession,条件查询 2. 快递员删除(逻辑删除) 3. 基于Apache POI实现批量导入区域数据 a) Jquery OCUpload上传文件插件使用 b) ...
- 使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10
使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10 [问题点数:40分,结帖人xieyongqiu] 不显示删除回复 ...
随机推荐
- 解决'maven lifecycle mapping not converted'的问题
基于maven的项目,使用各种maven plugin来完成开发中的各种工作,例如编译代码,打包,部署等等… 每个plugin包含许多的goal,用来做特定的事情.典型的基于java的maven项目就 ...
- Spark2.x(六十三):(Spark2.4)Driver如何把Task(闭包等)分配给Executor
在Spark中一个appliation可能包含多个job,每个job都是由SparkContext#runJob(...)触发的,一个Job下包含1个或多个Stage,Job的最后一个stage为Re ...
- 【C++】C++中的容器解析
目录结构: contents structure [-] 顺序容器 顺序容器的种类 顺序容器的操作 容器操作可能使迭代器失效 Vector容器的增长机制 容器适配器 关联容器 关联容器的分类 关联容器 ...
- easyui的datagrid的使用记录
datagrid是在 table的基础上变化而来的, 而不是在div的基础上来的. 从div来变成 datagrid,样式的设置还是是比较麻烦的. dg=datagrid 的标题 来源于 column ...
- SpringMVC中使用到DataBinder的类
RedirectAttributesMethodArgumentResolverRequestResponseBodyMethodProcessorServletModelAttributeMetho ...
- 解决在SQLPLUS中无法使用方向键、退格键问题
1. wget ftp://ftp.pbone.net/mirror/ftp5.gwdg.de/pub/opensuse/repositories/home:/matthewdva:/build:/E ...
- Hive学习笔记——parse
Hive是如何解析SQL的呢,首先拿hive的建表语句来举例,比如下面的建表语句 create table test(id int,name string)row format delimited f ...
- php代码规范->如何写出规范且易于理解的项目代码-ZX版
2019年5月17日10:50:12 前序: 目前是想到哪写到哪,后面有时间在整理成具体文章 很多时候,PHP代码风格过于自由,导致一个项目有N多种写法风格,有些人为了自己认为的技术"高&q ...
- 问题解决: 此文件来自其他计算机,可能被阻止以帮助保护该计算机/WORD在试图打开文件时遇到错误……
最近,在打开下载的office文档(包括word.excel.ppt等)时候,总是无法直接打开,错误提示如下: 无论是邮件中的还是别的网站下载的,均提示该错误.后来搜索相关资料发现,修改其文件属性即可 ...
- spring boot2X整合Consul一服务注册与发现
Consul 是HashiCorp公司推出的开源工具,用于实现分布式系统的服务发现与配置. 关键特性: 服务注册/发现 数据强一致性保证 多数据中心 健康检查 key/value存储 1.下载 htt ...