fix sax for date bug

This commit is contained in:
Looly
2020-05-31 16:45:37 +08:00
parent 5a99c64226
commit 640312c745
4 changed files with 19 additions and 6 deletions

View File

@@ -103,8 +103,9 @@ public class ExcelSaxReadTest {
}
@Test
@Ignore
public void dateReadTest(){
ExcelUtil.readBySax("d:/test/sax_test.xls", 0, (RowHandler) (i, i1, list) ->
ExcelUtil.readBySax("d:/test/sax_date_test.xlsx", 0, (i, i1, list) ->
Console.log(StrUtil.join(", ", list)));
};
}
}