This commit is contained in:
Looly
2022-09-30 18:40:03 +08:00
parent 6bde21ff4a
commit 665ba76f98
2 changed files with 15 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
package cn.hutool.poi.excel;
import org.junit.Ignore;
import org.junit.Test;
public class IssueI5U1JATest {
@Test
@Ignore
public void readAllTest() {
final ExcelReader reader = ExcelUtil.getReader("d:/test/issueI5U1JA.xlsx");
reader.readAll();
}
}