Aspose Java API : How to fetch Row from excel workbook which has maximum data in it

184 Views Asked by At

I want to get a row from XLSX workbook which has maximum data in it. I have the "com.aspose.cells.Cells" object of worksheet.

workbook = new Workbook(sourceFilePath);
com.aspose.cells.WorksheetCollection sheets = workbook.getWorksheets();
Worksheet worksheets = sheets.get(0);
com.aspose.cells.Cells cells = worksheets.getCells();

Could you please help me on this?

0

There are 0 best solutions below