fix mergeRegion

This commit is contained in:
Looly
2020-10-15 18:49:34 +08:00
parent fb46196782
commit cb761ffea2
3 changed files with 7 additions and 3 deletions

View File

@@ -215,9 +215,12 @@ public class ExcelReadTest {
}
@Test
@Ignore
public void readTest() {
final ExcelReader reader = ExcelUtil.getReader("d:/test/人员体检信息表.xlsx");
final List<List<Object>> read = reader.read();
// Console.log(read);
final List<List<Object>> read = reader.read(2);
for (List<Object> list : read) {
Console.log(list);
}
}
}