前言:
此类是个人目前认为比较通用的方式封装的。如果各位朋友,有更好的封装思路,请多多分享哦,希望我的封装思路能帮到大家。
代码实现:
import ;
import ;
import ;
import ;
import ;
import .*;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import ;
import .*;
/**
* excel poi 通用工具类
*/
public class POIUtils {
private final static String xls = ".xls";
private final static String xlsx = ".xlsx";
/**
* 读入excel文件,解析内容后返回结果
*
* @param file
* @throws IOException
*/
public static <T> List<T> readExcel(MultipartFile file, ExcelRowsHandler<T> handler) throws IOException {
String filename = ();
// 检查文件
checkFile(filename);
// 获得Workbook工作薄对象
Workbook workbook = getWorkBook(file, filename);
// 创建返回对象,把每行中的值作为一个数组,所有行作为一个集合返回
List<T> list = new ArrayList<T>();
if (workbook != null) {
if (() < 1 || (0).getLastRowNum() == 0) {
throw new FileNotFoundException("文件不存在!");
}
// for (int sheetNum = 0; sheetNum < (); sheetNum++) {// 循环导入各个Sheet
// 获得当前sheet工作表
Sheet sheet = (0);
// 获得当前sheet的开始行
int firstRowNum = ();
// 获得当前sheet的结束行
int lastRowNum = ();
// 根据行头确定每一行的列数,这里规定了行头的列数 = 数据的列数
int lastCellNum = (0).getLastCellNum();
// 循环除了第一行的所有行
for (int rowNum = firstRowNum + 1; rowNum <= lastRowNum; rowNum++) {
// 获得当前行
Row row = (rowNum);
// 获得当前行的开始列
int firstCellNum = ();
String[] cellDataArr = new String[lastCellNum];
// 循环当前行
for (int cellNum = firstCellNum; cellNum < lastCellNum; cellNum++) {
Cell cell = (cellNum);
cellDataArr[cellNum] = getCellValue(cell);
}
// 结果添加到list
T value = (rowNum + 1, cellDataArr);
if (value != null) {
(value);
}
}
}
// }
return list;
}
/**
*
* @param response
* @param filename 文件名称
* @param header 导出的标题数据 key为listMap的key值 value为标题
* @param dataset 数据
* @throws IOException
*/
public static void writeExcel(HttpServletResponse response, String filename, Map<String, String> header,
List<Map<String, Object>> dataset) throws IOException {
writeExcel(response, filename, header, null, (dataset));
}
/**
* 批量导出多个sheet
* @param response
* @param filename
* @param header
* @param sheetNames sheet名称
* @param sheetListData sheet数据
* @throws IOException
*/
public static void writeExcel(HttpServletResponse response, String filename, Map<String, String> header, List<String> sheetNames,
List<List<Map<String, Object>>> sheetListData) throws IOException {
// 获得Workbook工作薄对象
Workbook workbook = getWorkBook(filename);
CellStyle defaultTitleStyle = getDefaultTitleStyle(workbook);
for (int sheetIndex = 0; sheetIndex < (); sheetIndex++) {
List<Map<String, Object>> dataset = (sheetIndex); // 需要导出的数据
Sheet sheet = ();
if (sheetNames != null) {
(sheetIndex, (sheetIndex));
}
// 设置标题
Row headRow = (0);
List<String> values = new ArrayList<String>(());
for (int i = 0; i < (); i++) {
Cell cell = (i);
((i));
(defaultTitleStyle);
}
CellStyle defaultDataStyle = getDefaultDataStyle(workbook);
List<String> headKeys = new ArrayList<String>(());
for (int i = 0; i < (); i++) {
Map<String, Object> data = (i);
Row row = (i + 1);
for (int j = 0; j < (); j++) {
Cell cell = (j);
(defaultDataStyle);
String headKey = (j);
Object value = (headKey);
String textVal = null;
if (value != null) {
textVal = ();
}
(textVal);
}
}
}
ServletOutputStream out = ();
("Content-disposition", "attachment; filename=" + (filename, "UTF-8"));
("application/force-download");
(out);
}
/**
* 设置标题样式
*/
private static CellStyle getDefaultTitleStyle(Workbook workbook) {
CellStyle cellStyle = ();
(HSSFColor.LIGHT_CORNFLOWER_BLUE.index);
(HSSFCellStyle.SOLID_FOREGROUND);
(HSSFCellStyle.ALIGN_CENTER);
(HSSFCellStyle.VERTICAL_CENTER);
Font font = ();
((short) 11);
(HSSFFont.BOLDWEIGHT_BOLD);
(font);
return cellStyle;
}
/**
* 设置数据样式
*/
private static CellStyle getDefaultDataStyle(Workbook workbook) {
CellStyle cellStyle = ();
Font font = ();
// ((short) 9);
(font);
(HSSFCellStyle.ALIGN_CENTER); // 居中
return cellStyle;
}
private static void checkFile(String fileName) throws IOException {
// 判断文件是否是excel文件
if (!(xls) && !(xlsx)) {
throw new IOException(fileName + "不是excel文件");
}
}
/**
* 获取工作区间
*
* @param file
* @return
*/
private static Workbook getWorkBook(MultipartFile file, String fileName) {
// 创建Workbook工作薄对象
Workbook workbook = null;
try {
// 获取文件io流
InputStream is = ();
// 根据文件后缀名不同(xls和xlsx)获得不同的Workbook实现类对象
if ((xls)) {
// 2003
workbook = new HSSFWorkbook(is);
} else if ((xlsx)) {
// 2007
workbook = new XSSFWorkbook(is);
}
} catch (IOException e) {
throw new RuntimeException(e);
}
return workbook;
}
private static Workbook getWorkBook(String fileName) throws IOException {
// 创建Workbook工作薄对象
// 根据文件后缀名不同(xls和xlsx)获得不同的Workbook实现类对象
if ((xls)) {
// 2003
return new HSSFWorkbook();
} else if ((xlsx)) {
// 2007
return new XSSFWorkbook();
} else {
throw new IOException("文件名后缀错误");
}
}
/**
* 获取各个单元格的内容
*
* @param cell
* @return
*/
private static String getCellValue(Cell cell) {
if (cell == null) {
return null;
}
// 判断数据的类型
switch (()) {
case Cell.CELL_TYPE_NUMERIC: // 数值:
if ((cell)) {
return ().toString();
}
default:
(Cell.CELL_TYPE_STRING);
return ();
}
}
/**
* 每读取一行,就调用execute方法
*/
public interface ExcelRowsHandler<T> {
/**
* 可以再此方法校验数据,校验通过后封装 T,再返回,读入完后,再批量insert/update
*
* @param lineNum 行号
* @param rows 读取的当前这一行的数据
* @return 自定义封装成 T,返回null则不记录到list
*/
T execute(int lineNum, String[] rows);
}
}
导入示例:
public void importExcel(MultipartFile file) {
try {
List<Store> stores = (file, new <Store>() {
@Override
public Store execute(int lineNum, String[] rows) {
int i = 0;
String name = rows[i++]; // 名称
String email = rows[i++]; // 电子邮件
String applyMan = rows[i++]; // 联系人
String phone = rows[i]; // 联系电话
// 验证
(name, "第" + lineNum + "行,供应商名称不能为空");
(email, "第" + lineNum + "行,电子邮件不能为空");
(applyMan, "第" + lineNum + "行,联系人不能为空");
(phone, "第" + lineNum + "行,联系电话不能为空");
store = new Store();
(area);
(name);
(email);
(applyMan);
return store;
}
});
for (Store store : stores) {
save(store)
}
} catch (IOException e) {
throw new ServiceException(());
}
}
导出示例
public void exportExcel(HttpServletResponse response) throws IOException {
List<Object> objs = new ArrayList<Object>();
List<Map<String, Object>> data = data;// 这里根据业务需求,读出数据
LinkedHashMap<String, String> header = new LinkedHashMap<String, String>();
("sn", "编码");
("name", "名称");
// ...
//设置导出表格名
String filename = (new Date(), "yyyy-MM-dd") + ".xlsx";
(response, filename, header, data);
}