Before未定义异常情况
继承 AnalysisEventListener 重写 onException
@Override
public void onException(Exception exception, AnalysisContext context) throws Exception {
if (exception instanceof ExcelDataConvertException) {
ExcelDataConvertException excelDataConvertException = (ExcelDataConvertException)exception;
Integer row = excelDataConvertException.getRowIndex()+ 1;
Integer column = excelDataConvertException.getColumnIndex()+1;
throw new RuntimeException("第"+row+"行,第"+column+"列解析异常,请正确填写");
}
}
当抛出异常,停止读剩余数据,直接返回。
当没有抛出异常,忽略此行,继续读取插入
After文章来源:https://www.toymoban.com/news/detail-530286.html
文章来源地址https://www.toymoban.com/news/detail-530286.html
到了这里,关于导入数据解析的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!