This commit is contained in:
Looly
2020-10-15 23:27:53 +08:00
parent cb761ffea2
commit 8aec62a59b
2 changed files with 40 additions and 27 deletions

View File

@@ -217,8 +217,9 @@ public class ExcelReadTest {
@Test
@Ignore
public void readTest() {
// 测试合并单元格是否可以正常读到第一个单元格的值
final ExcelReader reader = ExcelUtil.getReader("d:/test/人员体检信息表.xlsx");
final List<List<Object>> read = reader.read(2);
final List<List<Object>> read = reader.read();
for (List<Object> list : read) {
Console.log(list);
}