HSSFSheet Sheet = wb.getSheetAt(0);
HSSFRow row = Sheet.getRow(i);
            if (row != null ){
                Sheet.removeRow(row);
            }
this code worked fine with POI.3.0.2-Final

With POI 3.5-beta5 throws the following error

java.lang.NoSuchMethodError:
org.apache.poi.hssf.usermodel.HSSFSheet.removeRow(Lorg/apache/poi/ss/usermodel/Row

Reply via email to