This commit is contained in:
Looly 2024-10-30 12:11:38 +08:00
parent 04bc83b440
commit 05342b48d7

View File

@ -0,0 +1,16 @@
package org.dromara.hutool.poi.excel.reader;
import org.dromara.hutool.core.io.file.FileUtil;
import org.dromara.hutool.core.lang.Console;
import org.dromara.hutool.poi.excel.ExcelUtil;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
public class IssueIB0EJ9Test {
@Test
@Disabled
void saxReadTest() {
ExcelUtil.readBySax(FileUtil.file("d:/test/bbb.xlsx"), "Sheet1",
(sheetIndex, rowIndex, rowlist) -> Console.log("[{}] [{}] {}", sheetIndex, rowIndex, rowlist));
}
}