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