I have the following code to read from a test file and print it on console but it's not printing any thing, I don't know how to chech the error its generating. I am using java, selenium, ie 10, win 8.
public class Rowcount {
public static void main(String[] args) throws BiffException, IOException {
FileInputStream exo=new FileInputStream("E:\\Test filee.xlsx");
Workbook wbo=Workbook.getWorkbook(exo);
Sheet wso=wbo.getSheet(0);
int lastrownum;
lastrownum= wso.getRows();
System.out.println(lastrownum);
}
}