springframework批处理项目Excel RowMapper-mapRow-ColumnValue-#NA

时间:2018-09-04 16:17:44

标签: excel spring spring-boot

我正在使用mapRow阅读Excel表。

我的Excel工作表的单元格包含值#N / A。当我使用mapRow阅读excel工作表时,包含#N / A值的行被完全跳过!

是否有任何变通方法来使用RowMapper读取跳过的行?

@Component
public class ExcelRowMapper implements RowMapper<LineItemDTO> {
@Override
public LineItemDTO mapRow(RowSet rs) throws Exception {
        rs.getCurrentRowIndex();
 }
}

Excel数据:
列名
 123123
 123ss
 dafsdf
 #N / A
 asdasd
 2323

该代码读取了前4行,并跳过了包含#N / A的行,并读取了下面的行。

0 个答案:

没有答案