-
Notifications
You must be signed in to change notification settings - Fork 4
08. Reading individual data from a XLS workbook
Hemanth Sridhar edited this page Mar 3, 2022
·
1 revision
String path = "src/test/resources/workbook.xls";
ExtUtils ext = new ExcelUtils(path);
ext.parseData();
ext.readCell("columnName", 2);
String path = "src/test/resources/workbook.xls";
ExtUtils ext = new ExcelUtils(path);
ext.parseData();
ext.readCell(3, 1);
String path = "src/test/resources/workbook.xls";
ExtUtils ext = new ExcelUtils(path,"sheetName");
ext.parseData();
ext.readCell("columnName", 2);
String path = "src/test/resources/workbook.xls";
ExtUtils ext = new ExcelUtils(path,"sheetName");
ext.parseData();
ext.readCell(3, 1);