我最初构建了csvtobean
CsvToBean<> beans = new CsvToBeanBuilder<>(reader).withThrowExceptions(false).build();
在我执行解析之后。
final List<> requestList = beans.parse();
最后,我可以用foreach浏览豆子列表。
requestList.forEach(fileRow -> {
// exception here... what is the original csv line number???
})
如果这里出了问题,我需要能够指出导致错误的csv行号。
有什么解决办法吗?谢谢
暂无答案!
目前还没有任何答案,快来回答吧!