How to read one row at a time from excel file using aspose in java -


i have excel file 1000's of rows , want read each row @ time in java using aspose api's. want convert each row string array. can me this?

worksheet worksheet = workbook.getworksheets().get(0); cells cells = worksheet.getcells(); 

aspose.cells provides lightcells api, designed read/ write cell's data 1 one without building complete data model block (using cell collection etc.) memory. works in event-driven mode. think may try it. when reading template files, component parses every cell , provides value 1 one. please see document reference here.

i developer evangelist @ aspose.


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -