Jiaju Zhuang
5 years ago
committed by
GitHub
11 changed files with 236 additions and 1 deletions
@ -0,0 +1,85 @@
|
||||
package com.alibaba.easyexcel.test.demo.read; |
||||
|
||||
import com.alibaba.excel.context.AnalysisContext; |
||||
import com.alibaba.excel.event.AnalysisEventListener; |
||||
import com.alibaba.excel.exception.ExcelDataConvertException; |
||||
import com.alibaba.excel.util.CollectionUtils; |
||||
import com.alibaba.fastjson.JSON; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* 读取单元格的批注 |
||||
* |
||||
* @author: kaiux |
||||
* @date: 2019-10-23 14:10 |
||||
**/ |
||||
public class DemoCellCommentsListener extends AnalysisEventListener<DemoData> { |
||||
private static final Logger LOGGER = LoggerFactory.getLogger(DemoCellCommentsListener.class); |
||||
/** |
||||
* 每隔5条存储数据库,实际使用中可以3000条,然后清理list ,方便内存回收 |
||||
*/ |
||||
private static final int BATCH_COUNT = 5; |
||||
List<DemoData> list = new ArrayList<DemoData>(); |
||||
|
||||
/** |
||||
* 在转换异常 获取其他异常下会调用本接口。抛出异常则停止读取。如果这里不抛出异常则 继续读取下一行。 |
||||
* |
||||
* @param exception |
||||
* @param context |
||||
* @throws Exception |
||||
*/ |
||||
@Override |
||||
public void onException(Exception exception, AnalysisContext context) { |
||||
LOGGER.error("解析失败,但是继续解析下一行:{}", exception.getMessage()); |
||||
if (exception instanceof ExcelDataConvertException) { |
||||
ExcelDataConvertException excelDataConvertException = (ExcelDataConvertException) exception; |
||||
LOGGER.error("第{}行,第{}列解析异常", excelDataConvertException.getRowIndex(), |
||||
excelDataConvertException.getColumnIndex()); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* 这里会一行行的返回头 |
||||
* |
||||
* @param headMap |
||||
* @param context |
||||
*/ |
||||
@Override |
||||
public void invokeHeadMap(Map<Integer, String> headMap, AnalysisContext context) { |
||||
Map<Integer, String> rowComments = context.readRowHolder().getRowComments(); |
||||
LOGGER.info("解析到一条头数据:{}", JSON.toJSONString(headMap)); |
||||
if (!CollectionUtils.isEmpty(rowComments)) { |
||||
for (Integer i : rowComments.keySet()) { |
||||
LOGGER.info("解析到头数据低{}列包含批注:{}", i, rowComments.get(i)); |
||||
} |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void invoke(DemoData data, AnalysisContext context) { |
||||
LOGGER.info("解析到一条数据:{}", JSON.toJSONString(data)); |
||||
if (list.size() >= BATCH_COUNT) { |
||||
saveData(); |
||||
list.clear(); |
||||
} |
||||
} |
||||
|
||||
@Override |
||||
public void doAfterAllAnalysed(AnalysisContext context) { |
||||
saveData(); |
||||
LOGGER.info("所有数据解析完成!"); |
||||
} |
||||
|
||||
/** |
||||
* 加上存储数据库 |
||||
*/ |
||||
private void saveData() { |
||||
LOGGER.info("{}条数据,开始存储数据库!", list.size()); |
||||
LOGGER.info("存储数据库成功!"); |
||||
} |
||||
} |
Binary file not shown.
Loading…
Reference in new issue