add methods

This commit is contained in:
Looly
2020-10-15 18:16:56 +08:00
parent 72ea16b980
commit fb46196782
5 changed files with 407 additions and 386 deletions

View File

@@ -214,4 +214,10 @@ public class ExcelReadTest {
reader.read((cell, value)-> Console.log("{}, {} {}", cell.getRowIndex(), cell.getColumnIndex(), value));
}
@Test
public void readTest() {
final ExcelReader reader = ExcelUtil.getReader("d:/test/人员体检信息表.xlsx");
final List<List<Object>> read = reader.read();
// Console.log(read);
}
}