tags:

views:

103

answers:

1

Hi I have an xls file for eg. (abc.xls) how can i read and upload this file using spring. Can you help me with some sites where i can get some information on this.

Thank you.

+1  A: 

You can use Spring MVC's File upload support to get the file from browser to server, and then Apache POI to extract the required data from it.

skaffman