mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-04-19 03:01:48 +08:00
add test
This commit is contained in:
parent
2200701d7e
commit
a06c1e65a1
18
hutool-poi/src/test/java/cn/hutool/poi/excel/IssueI5Q1TWTest.java
Executable file
18
hutool-poi/src/test/java/cn/hutool/poi/excel/IssueI5Q1TWTest.java
Executable file
@ -0,0 +1,18 @@
|
|||||||
|
package cn.hutool.poi.excel;
|
||||||
|
|
||||||
|
import cn.hutool.core.lang.Console;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public class IssueI5Q1TWTest {
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Ignore
|
||||||
|
public void readTest(){
|
||||||
|
final ExcelReader reader = ExcelUtil.getReader("d:/test/I5Q1TW.xlsx");
|
||||||
|
final List<List<Object>> read = reader.read();
|
||||||
|
Console.log(reader.readCellValue(0, 0));
|
||||||
|
}
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user