use of cn.hutool.core.lang.Console in project hutool by dromara.
the class ExcelSaxReadTest method readBlankTest.
@Test
@Ignore
public void readBlankTest() {
File file = new File("D:/test/b.xlsx");
ExcelUtil.readBySax(file, 0, (sheetIndex, rowIndex, rowList) -> rowList.forEach(Console::log));
ExcelUtil.getReader(file).read().forEach(Console::log);
}
use of cn.hutool.core.lang.Console in project hutool by looly.
the class ExcelSaxReadTest method readBlankTest.
@Test
@Ignore
public void readBlankTest() {
File file = new File("D:/test/b.xlsx");
ExcelUtil.readBySax(file, 0, (sheetIndex, rowIndex, rowList) -> rowList.forEach(Console::log));
ExcelUtil.getReader(file).read().forEach(Console::log);
}