Hi I have started using apache poi. To read workbook I am using below method
Workbook wb = WorkbookFactory.create(attachment.getDataHandler.getInputStream()); This call takes around 1400 ms to read 10k rows , each row has 4 column and there is no formula. All columns have numbers and strings only. Is there any alternate method to read excel faster ? Or any way I can modify this to read excel sheet in faster way. Please suggest. Regards Vipin
