(各自根据具体的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的列和删除列的更多相关文章

  1. 使用jxl,poi读取excel文件

    作用:在java后台添加一个方法,读取导入的excel内容,根据需要返回相应的sql语句,以完成对临时表的插入操作. 使用jxl读取excel文件 package com.sixthf.bi.sapp ...

  2. java用poi读取Excel表格中的数据

    Java读写Excel的包是Apache POI(项目地址:http://poi.apache.org/),因此需要先获取POI的jar包,本实验使用的是POI 3.9稳定版.Apache POI 代 ...

  3. Java开发小技巧(六):使用Apache POI读取Excel

    前言 在数据仓库中,ETL最基础的步骤就是从数据源抽取所需的数据,这里所说的数据源并非仅仅是指数据库,还包括excel.csv.xml等各种类型的数据接口文件,而这些文件中的数据不一定是结构化存储的, ...

  4. POI读取Excel数据

    POI读取Excel表格数据 * {所需相关jar下载: * commons-collections4-4.4.jar * commons-compress-1.19.jar * poi-4.1.1. ...

  5. POI读取Excel内容格式化

    在用POI读取Excel内容时,经常会遇到数据格式化的问题. 比如:数字12365会变为12365.0;字符串数字123也会变为123.0,甚至会被变为科学计数法.另外日期格式化也是一个头疼的问题.其 ...

  6. java使用poi读取ppt文件和poi读取excel、word示例

    java使用poi读取ppt文件和poi读取excel.word示例 http://www.jb51.net/article/48092.htm

  7. JAVA使用POI读取EXCEL文件的简单model

    一.JAVA使用POI读取EXCEL文件的简单model 1.所需要的jar commons-codec-1.10.jarcommons-logging-1.2.jarjunit-4.12.jarlo ...

  8. 项目一:第四天 1、快递员的条件分页查询-noSession,条件查询 2、快递员删除(逻辑删除) 3、基于Apache POI实现批量导入区域数据 a)Jquery OCUpload上传文件插件使用 b)Apache POI读取excel文件数据

    1. 快递员的条件分页查询-noSession,条件查询 2. 快递员删除(逻辑删除) 3. 基于Apache POI实现批量导入区域数据 a) Jquery OCUpload上传文件插件使用 b) ...

  9. 使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10

    使用POI 读取 Excel 文件,读取手机号码 变成 1.3471022771E10 [问题点数:40分,结帖人xieyongqiu]             不显示删除回复             ...

随机推荐

  1. .NETCore websocket

    .NETCore websocket 实现简易.高性能.集群即时通讯组件,支持点对点通讯.群聊通讯.上线下线事件消息等众多实用性功能. https://github.com/2881099/im

  2. Google BERT应用之《红楼梦》对话人物提取

    Google BERT应用之<红楼梦>对话人物提取 https://www.jiqizhixin.com/articles/2019-01-24-19

  3. TermKit的新一代Mac终端,在Ubuntu 11.04 轻松安装TermKit

    作为开发人员的必备工具,终端程序却一直没有什么大的变化,TermKit旨在改变这一切,作为下一代的命令行/终端程序,TermKit为我们提供了一个图形化的终端/命令行程序,它可以以可视化的方式展示终端 ...

  4. kaggle, gmail, 烟雨朦胧

    kaggle, gmail, 烟雨朦胧 刚才为了体验kaggle,用gmail重新登录,需要验证十几年前在桂林使用的手机号,竟然找到了,终于又可以上了. 那是一个在烟雨江南里努力奋斗而又迷失自我不堪回 ...

  5. EChart 标题 title 样式,x轴、y轴坐标显示,调整图表位置等

    示例里工作一般情况是够用了,更复杂的可以查询教程: title 官方解说:http://echarts.baidu.com/option.html#title 坐标相关: X轴:http://echa ...

  6. Nginx接入gPRC

    gPRC官网:https://grpc.io/ NGINX将在1.13.10版本中包含grpc相关功能 这个版本支持NGINX代理gRPC TCP连接.可以用来: 发布gRPC服务,包括未加密/加密的 ...

  7. Linux下安装.NET Core

    环境 { "操作系统":"CentOS 7.5 64位", "CPU":"1核", "内存":&qu ...

  8. idea的java类图标C不见,取而代之是J标识,且写代码无提示

    https://blog.csdn.net/weixin_42800689/article/details/83819676 方法1 此时我们需要关闭节能模式: File–Power Save Mod ...

  9. Java分布式:分布式服务框架——ZooKeeper

    Java分布式:ZooKeeper——核心概念 ZooKeeper 统一配置管理 统一命名服务 分布式锁

  10. 1.4 Linux下对lvm逻辑卷分区大小的调整(针对xfs和ext4不同文件系统)

      当我们在安装系统的时候,由于没有合理分配分区空间,在后续维护过程中,发现有些分区空间不够使用,而有的分区空间却有很多剩余空间.如果这些分区在装系统的时候使用了lvm(前提是这些分区要是lvm逻辑卷 ...