|
@@ -1,5 +1,18 @@
|
|
|
package com.ym.mec.util.excel;
|
|
|
|
|
|
+import com.ym.mec.util.exception.UtilException;
|
|
|
+import org.apache.commons.beanutils.NestedNullException;
|
|
|
+import org.apache.commons.beanutils.PropertyUtils;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
+import org.apache.poi.POIXMLDocumentPart;
|
|
|
+import org.apache.poi.hssf.usermodel.*;
|
|
|
+import org.apache.poi.ss.usermodel.*;
|
|
|
+import org.apache.poi.xssf.streaming.SXSSFWorkbook;
|
|
|
+import org.apache.poi.xssf.usermodel.*;
|
|
|
+import org.openxmlformats.schemas.drawingml.x2006.spreadsheetDrawing.CTMarker;
|
|
|
+import org.slf4j.Logger;
|
|
|
+import org.slf4j.LoggerFactory;
|
|
|
+
|
|
|
import java.io.File;
|
|
|
import java.io.FileInputStream;
|
|
|
import java.io.IOException;
|
|
@@ -7,36 +20,9 @@ import java.io.InputStream;
|
|
|
import java.lang.reflect.InvocationTargetException;
|
|
|
import java.lang.reflect.Method;
|
|
|
import java.text.SimpleDateFormat;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Date;
|
|
|
-import java.util.HashMap;
|
|
|
-import java.util.Iterator;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
+import java.util.*;
|
|
|
import java.util.Map.Entry;
|
|
|
|
|
|
-import org.apache.commons.beanutils.NestedNullException;
|
|
|
-import org.apache.commons.beanutils.PropertyUtils;
|
|
|
-import org.apache.poi.hssf.usermodel.HSSFCell;
|
|
|
-import org.apache.poi.hssf.usermodel.HSSFCellStyle;
|
|
|
-import org.apache.poi.hssf.usermodel.HSSFFont;
|
|
|
-import org.apache.poi.hssf.usermodel.HSSFRow;
|
|
|
-import org.apache.poi.hssf.usermodel.HSSFSheet;
|
|
|
-import org.apache.poi.hssf.usermodel.HSSFWorkbook;
|
|
|
-import org.apache.poi.ss.usermodel.Cell;
|
|
|
-import org.apache.poi.ss.usermodel.CellStyle;
|
|
|
-import org.apache.poi.ss.usermodel.Font;
|
|
|
-import org.apache.poi.ss.usermodel.IndexedColors;
|
|
|
-import org.apache.poi.ss.usermodel.Row;
|
|
|
-import org.apache.poi.ss.usermodel.Sheet;
|
|
|
-import org.apache.poi.ss.usermodel.Workbook;
|
|
|
-import org.apache.poi.xssf.streaming.SXSSFWorkbook;
|
|
|
-import org.apache.poi.xssf.usermodel.XSSFWorkbook;
|
|
|
-import org.slf4j.Logger;
|
|
|
-import org.slf4j.LoggerFactory;
|
|
|
-
|
|
|
-import com.ym.mec.util.exception.UtilException;
|
|
|
-
|
|
|
public class POIUtil {
|
|
|
|
|
|
private final static Logger LOGGER = LoggerFactory.getLogger(POIUtil.class);
|
|
@@ -48,10 +34,11 @@ public class POIUtil {
|
|
|
|
|
|
/**
|
|
|
* 将数据集dataset导出到fileName文件中(只支持.xlsx格式)
|
|
|
+ *
|
|
|
* @param headColumns 导出文件的列名
|
|
|
- * @param dataset 数据源
|
|
|
+ * @param dataset 数据源
|
|
|
* @return
|
|
|
- * @throws IOException
|
|
|
+ * @throws IOException
|
|
|
*/
|
|
|
public static SXSSFWorkbook exportBigExcel(String[] headColumns, List<Map<String, Object>> dataset) throws IOException {
|
|
|
if (headColumns == null) {
|
|
@@ -105,10 +92,11 @@ public class POIUtil {
|
|
|
|
|
|
/**
|
|
|
* 将数据集dataset导出到fileName文件中
|
|
|
+ *
|
|
|
* @param headColumns 导出文件的列名
|
|
|
- * @param dataset 数据源
|
|
|
+ * @param dataset 数据源
|
|
|
* @return
|
|
|
- * @throws IOException
|
|
|
+ * @throws IOException
|
|
|
*/
|
|
|
public static HSSFWorkbook exportExcel(String[] headColumns, List<Map<String, Object>> dataset) throws IOException {
|
|
|
if (headColumns == null) {
|
|
@@ -165,14 +153,15 @@ public class POIUtil {
|
|
|
|
|
|
/**
|
|
|
* 将数据集dataset导出到fileName文件中
|
|
|
- * @param headColumns 导出文件的列名
|
|
|
- * @param fieldColumns
|
|
|
- * @param dataset 数据源
|
|
|
+ *
|
|
|
+ * @param headColumns 导出文件的列名
|
|
|
+ * @param fieldColumns
|
|
|
+ * @param dataset 数据源
|
|
|
* @return
|
|
|
- * @throws IOException
|
|
|
- * @throws NoSuchMethodException
|
|
|
- * @throws InvocationTargetException
|
|
|
- * @throws IllegalAccessException
|
|
|
+ * @throws IOException
|
|
|
+ * @throws NoSuchMethodException
|
|
|
+ * @throws InvocationTargetException
|
|
|
+ * @throws IllegalAccessException
|
|
|
*/
|
|
|
public static <T> HSSFWorkbook exportExcel(String[] headColumns, String[] fieldColumns, List<T> dataset) throws IOException, IllegalAccessException,
|
|
|
InvocationTargetException, NoSuchMethodException {
|
|
@@ -243,14 +232,15 @@ public class POIUtil {
|
|
|
|
|
|
/**
|
|
|
* 将数据集dataset导出到fileName文件中(只支持.xlsx格式)
|
|
|
- * @param headColumns 导出文件的列名
|
|
|
- * @param fieldColumns
|
|
|
- * @param dataset 数据源
|
|
|
+ *
|
|
|
+ * @param headColumns 导出文件的列名
|
|
|
+ * @param fieldColumns
|
|
|
+ * @param dataset 数据源
|
|
|
* @return
|
|
|
- * @throws IOException
|
|
|
- * @throws NoSuchMethodException
|
|
|
- * @throws InvocationTargetException
|
|
|
- * @throws IllegalAccessException
|
|
|
+ * @throws IOException
|
|
|
+ * @throws NoSuchMethodException
|
|
|
+ * @throws InvocationTargetException
|
|
|
+ * @throws IllegalAccessException
|
|
|
*/
|
|
|
public static <T> SXSSFWorkbook exportBigExcel(String[] headColumns, String[] fieldColumns, List<T> dataset) throws IOException, IllegalAccessException,
|
|
|
InvocationTargetException, NoSuchMethodException {
|
|
@@ -318,7 +308,8 @@ public class POIUtil {
|
|
|
|
|
|
/**
|
|
|
* 导入指定的excel文件
|
|
|
- * @param excelFile excel文件
|
|
|
+ *
|
|
|
+ * @param excelFile excel文件
|
|
|
* @param startRowNum 从第几行数据开始导入
|
|
|
* @return
|
|
|
* @throws IOException
|
|
@@ -428,9 +419,10 @@ public class POIUtil {
|
|
|
|
|
|
/**
|
|
|
* 导入指定的excel文件
|
|
|
+ *
|
|
|
* @param inputStream excel文件流
|
|
|
* @param startRowNum 从第几行数据开始导入
|
|
|
- * @param extName 文件扩展名,仅支持.xls 或 .xlsx
|
|
|
+ * @param extName 文件扩展名,仅支持.xls 或 .xlsx
|
|
|
* @return
|
|
|
* @throws IOException
|
|
|
*/
|
|
@@ -441,10 +433,10 @@ public class POIUtil {
|
|
|
Workbook workbook = null;
|
|
|
|
|
|
try {
|
|
|
- if (".xlsx".equals(extName.toLowerCase())) {
|
|
|
+ if (extName.endsWith(".xlsx")) {
|
|
|
// 支持excel2007 xlsx格式
|
|
|
workbook = new XSSFWorkbook(inputStream);
|
|
|
- } else if (".xls".equals(extName)) {
|
|
|
+ } else if (extName.endsWith(".xls")) {
|
|
|
// 支持excel2003以前 xls格式
|
|
|
workbook = new HSSFWorkbook(inputStream);
|
|
|
} else {
|
|
@@ -474,10 +466,19 @@ public class POIUtil {
|
|
|
currentRowNum = 0;
|
|
|
// 顺序取sheet
|
|
|
sheet = workbook.getSheetAt(i);
|
|
|
+
|
|
|
+ Map<String, List<PictureData>> picMap = null;
|
|
|
+ if (extName.endsWith(".xlsx")) {
|
|
|
+ picMap = getXlsxPictures((XSSFSheet) sheet);
|
|
|
+ } else if (extName.endsWith(".xls")) {
|
|
|
+ picMap = getXlsPictures((HSSFSheet) sheet);
|
|
|
+ }
|
|
|
+
|
|
|
List<Map<String, Object>> datas = new ArrayList<Map<String, Object>>();
|
|
|
rowIter = sheet.iterator();
|
|
|
while (rowIter.hasNext()) {
|
|
|
Map<String, Object> obj = null;
|
|
|
+ boolean hasVal = false;
|
|
|
// 获取当前行
|
|
|
row = rowIter.next();
|
|
|
if (row != null) {
|
|
@@ -509,15 +510,33 @@ public class POIUtil {
|
|
|
currentCellNum = 0;
|
|
|
while (cellIter.hasNext()) {
|
|
|
cell = cellIter.next();
|
|
|
+ int columnIndex = cell.getColumnIndex();
|
|
|
cell.setCellType(Cell.CELL_TYPE_STRING);
|
|
|
- String fieldValue = cell.getStringCellValue();
|
|
|
+ String fieldValue = "";
|
|
|
+ if (columnIndex == currentCellNum) {
|
|
|
+ fieldValue = cell.getStringCellValue();
|
|
|
+ }
|
|
|
+ if (StringUtils.isNotBlank(fieldValue)) {
|
|
|
+ hasVal = true;
|
|
|
+ }
|
|
|
obj.put(fieldsName[currentCellNum], fieldValue);
|
|
|
currentCellNum++;
|
|
|
}
|
|
|
}
|
|
|
- if (obj != null)
|
|
|
- datas.add(obj);
|
|
|
|
|
|
+ if (picMap != null) {
|
|
|
+ for (Entry<String, List<PictureData>> pics : picMap.entrySet()) {
|
|
|
+ String key = pics.getKey();
|
|
|
+ String[] split = key.split("-");
|
|
|
+ int rowIndex = Integer.parseInt(split[0]);
|
|
|
+ int cellIndex = Integer.parseInt(split[1]);
|
|
|
+ if (rowIndex != (currentRowNum - 1)) continue;
|
|
|
+ obj.put(fieldsName[cellIndex], pics.getValue());
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ if (obj != null && hasVal)
|
|
|
+ datas.add(obj);
|
|
|
}
|
|
|
if (!datas.isEmpty())
|
|
|
result.put(sheet.getSheetName(), datas);
|
|
@@ -614,4 +633,72 @@ public class POIUtil {
|
|
|
return list;
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 获取图片和位置 (xls)
|
|
|
+ *
|
|
|
+ * @param sheet
|
|
|
+ * @return
|
|
|
+ * @throws IOException
|
|
|
+ */
|
|
|
+ public static Map<String, List<PictureData>> getXlsPictures(HSSFSheet sheet) throws IOException {
|
|
|
+ Map<String, List<PictureData>> map = new HashMap<>();
|
|
|
+ if (sheet.getDrawingPatriarch() == null || sheet.getDrawingPatriarch().getChildren() == null) {
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+ List<HSSFShape> list = sheet.getDrawingPatriarch().getChildren();
|
|
|
+ for (HSSFShape shape : list) {
|
|
|
+ if (shape instanceof HSSFPicture) {
|
|
|
+ HSSFPicture picture = (HSSFPicture) shape;
|
|
|
+ HSSFClientAnchor cAnchor = (HSSFClientAnchor) picture.getAnchor();
|
|
|
+ PictureData pdata = picture.getPictureData();
|
|
|
+ String key = cAnchor.getRow1() + "-" + cAnchor.getCol1(); // 行号-列号
|
|
|
+ if (map.containsKey(key)) {
|
|
|
+ List<PictureData> pics = map.get(key);
|
|
|
+ pics.add(pdata);
|
|
|
+ map.put(key, pics);
|
|
|
+ } else {
|
|
|
+ List<PictureData> pics = new ArrayList<>();
|
|
|
+ pics.add(pdata);
|
|
|
+ map.put(key, pics);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 获取图片和位置 (xlsx)
|
|
|
+ *
|
|
|
+ * @param sheet
|
|
|
+ * @return
|
|
|
+ * @throws IOException
|
|
|
+ */
|
|
|
+ public static Map<String, List<PictureData>> getXlsxPictures(XSSFSheet sheet) throws IOException {
|
|
|
+ Map<String, List<PictureData>> map = new HashMap<>();
|
|
|
+ List<POIXMLDocumentPart> list = sheet.getRelations();
|
|
|
+ for (POIXMLDocumentPart part : list) {
|
|
|
+ if (part instanceof XSSFDrawing) {
|
|
|
+ XSSFDrawing drawing = (XSSFDrawing) part;
|
|
|
+ List<XSSFShape> shapes = drawing.getShapes();
|
|
|
+ for (XSSFShape shape : shapes) {
|
|
|
+ XSSFPicture picture = (XSSFPicture) shape;
|
|
|
+ XSSFClientAnchor anchor = picture.getPreferredSize();
|
|
|
+ CTMarker marker = anchor.getFrom();
|
|
|
+ String key = marker.getRow() + "-" + marker.getCol();
|
|
|
+
|
|
|
+ if (map.containsKey(key)) {
|
|
|
+ List<PictureData> pics = map.get(key);
|
|
|
+ pics.add(picture.getPictureData());
|
|
|
+ map.put(key, pics);
|
|
|
+ } else {
|
|
|
+ List<PictureData> pics = new ArrayList<>();
|
|
|
+ pics.add(picture.getPictureData());
|
|
|
+ map.put(key, pics);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return map;
|
|
|
+ }
|
|
|
+
|
|
|
}
|