0
异常代码 版本3.1.0
// File excleFile = new File("d:/dl/test.csv");
InputStream inputStream = new FileInputStream("d:/dl/test.csv");
EasyExcel.read(inputStream, new ReadListener() {
@Override
public void invoke(Object data, AnalysisContext context) {
log.info(JSON.toJSONString(data));
}
@Override
public void doAfterAllAnalysed(AnalysisContext context) {
}
}).sheet().doRead();
异常提示 com.alibaba.excel.exception.ExcelCommonException: Convert excel format exception.You can try specifying the 'excelType' yourself 建议描述