This commit is contained in:
Looly
2020-12-09 00:08:12 +08:00
parent 68da52bf82
commit 30e1eb929c
4 changed files with 49 additions and 6 deletions

View File

@@ -175,4 +175,12 @@ public class ExcelSaxReadTest {
ExcelUtil.getReader(file).read().forEach(Console::log);
}
@Test
@Ignore
public void readXlsmTest(){
ExcelUtil.readBySax("d:/test/WhiteListTemplate.xlsm", -1, (sheetIndex, rowIndex, rowlist) -> {
Console.log("[{}] [{}] {}", sheetIndex, rowIndex, rowlist);
});
}
}