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] 不显示删除回复 ...
随机推荐
- 【转】Linux 系统如何处理名称解析
原文写的很好:https://blog.arstercz.com/linux-%E7%B3%BB%E7%BB%9F%E5%A6%82%E4%BD%95%E5%A4%84%E7%90%86%E5%90% ...
- Delaunay和Voronoi
什么是Delaunay三角剖分? 图1:Delaunay三角剖分偏爱小角度 给定平面中的一组点,三角剖分指的是将平面细分为三角形,这些点为顶点.在图1中,我们在左侧图像上看到了一组地标,在中间图像上看 ...
- TOKEN验证防止CSRF攻击的原理
TOKEN验证防止CSRF攻击的原理.CSRF中文名是跨站请求伪造攻击,黑客可以通过CSRF攻击来伪造我们的身份,从而进行不法的活动.比如说是以我们的身份进行转账,发送邮件等操作. 要想做到预防CSR ...
- odoo开发笔记 -- 还原数据库后,异常:ir_attachment: IOError: [Errno 2] No such file or directory: u'/var/...'
场景描述: 恢复Odoo数据后,抛出错误导致无法进入页面 -- ::, INFO aeo odoo.addons.base.ir.ir_attachment: _read_file reading / ...
- matlab学习笔记12_3串联结构体,按属性创建含有元胞数组的结构体,filenames,isfield,isstruct,orderfields
一起来学matlab-matlab学习笔记12 12_3 结构体 串联结构体,按属性创建含有元胞数组的结构体,filenames,isfield,isstruct,orderfields 觉得有用的话 ...
- java Random 抢红包算法
红包有一个总金额和总数量,领的时候随机分配金额. 维护一个剩余总金额和总数量,分配时,如果数量等于1,直接返回总金额,如果大于1,则计算平均值,并设定随机最大值为平均值的两倍,然后取一个随机值,如果随 ...
- Python - Django - 中间件 process_response
process_response 函数是执行完 views.py 后执行的函数 process_response 函数有两个参数,一个是 request,一个是 response,response 是 ...
- ODAC 安裝 (11.2.4)
1.下载解压 下载ODCA 安装包,下载地址:http://www.oracle.com/technetwork/database/windows/downloads/index-090165.htm ...
- java jdbc使用SSH隧道连接mysql数据库demo
java jdbc使用SSH隧道连接mysql数据库demo 本文链接:https://blog.csdn.net/earbao/article/details/50216999 packag ...
- nginx的rtmp搭建流媒体服务器实现直播流
最近自己搞了一个用nginx的rtmp来搭建流媒体服务器,从而实现直播的过程,参考了网上很多资料,有些资料对于初学者来说比较难以理解,在此将我搭建的过程记录下来,分享给大家. 1.下载nginx-rt ...