Does Apache POI provide any function for us to count the number of "not-null" rows in a sheet of an Excel file?
At the first time, I have an Excel sheet with 10 data rows, the function worksheet.getPhysicalNumberOfRows() returns the exact number (10). But after that, I delete 3 rows, then that function still gets 10 rows. Maybe the total number of rows was cached anywhere by POI. What does getPhysicalNumberOfRows() mean? As its API described: "Returns the number of physically defined rows (NOT the number of rows in the sheet)", but I do not understand what "physically defined" mean. Can you help me on this issue?
Thank you so much!
|
|
||||
|
|
|
If you delete the rows via worksheet.removeRow(Row row), then the physical row count should be 7. POI uses a map to store the rows of a sheet. This map is the physical part. See http://www.google.com/codesearch/p?hl=de#WXzbfAF-tQc/trunk/src/java/org/apache/poi/hssf/usermodel/HSSFSheet.java As to the logically null rows, try
|
|||||
|
|
If you look at the code of the POI 3.8 beta 3, you'll see that removing a row should also remove its record. As such, the number of physical rows in the file should go down too I'd suggest you try with a newer version of POI To count the number of non empty rows in a file, do something like Amadeus suggests and loop over the rows on the sheet and check if they have cells. |
|||
|
|
|
If you are deleting manually, make sure you use delete row and not just delete the data in cells then it will return the correct value. |
|||
|
|