How to read and upload a xls file using Spring framework?
I have an 开发者_开发知识库xls file, for example "abc.xls"; how can I read and upload this file using Spring?
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.
精彩评论