GetCellData method not retrieving the data from Xls_readerjava it always returns blank value | Selenium Forum
V
vasantha Posted on 06/01/2019
public class XLREADING {

public static void main(String[] args) {
// TODO Auto-generated method stub


Xls_Reader xls=new Xls_Reader("C:\\Users\\x\\IdeaProjects\\ReadData\\target\\classes\\data.xlsx");
int total_row=xls.getRowCount("Testcases");
int total_columns=xls.getColumnCount("Testcases");
System.out.println("total_row--"+total_row);
System.out.println("total_columns---"+total_columns);
String getdata=xls.getCellData("Testcases",2, 4);

System.out.println(getdata);

}

}

A
Ashish Thakur Replied on 09/01/2019

        String getdata=xls.getCellData("Testcases",2, 4);
This will get value from 3rd col and 4th row