This commit is contained in:
Looly
2020-05-30 07:26:02 +08:00
parent ff327057e4
commit 0e1936e41d
2 changed files with 6 additions and 2 deletions

View File

@@ -101,4 +101,10 @@ public class ExcelSaxReadTest {
}
);
}
@Test
public void dateReadTest(){
ExcelUtil.readBySax("d:/test/sax_test.xls", 0, (RowHandler) (i, i1, list) ->
Console.log(StrUtil.join(", ", list)));
};
}