Can I check for empty rows in excel using apache POI methods
XSSFSheet sheet = workbook.getSheetAt(i);
sheet.getRow(0)!= null;
I am thinking of trying this, but I just wanted to check if there would be any problems later on with this. Any suggestion?
Thanks