I'm using Java 6 & Spring-MVC 3.1
What is the easiest way to export to Microsoft Excel ( .xls & .xlsx ) and import from Microsoft Excel?
Thanks
I'm using Java 6 & Spring-MVC 3.1
What is the easiest way to export to Microsoft Excel ( .xls & .xlsx ) and import from Microsoft Excel?
Thanks
Java handles .csv files very well (which microsoft excel uses). I would convert your relevant .xls and .xlsx files to .csv files and then extend code such as the following:
http://www.roseindia.net/java/examples/io/writeToFileCsv.shtml
That should get you started. If you get stuck, a 'java read/write from .csv' search should keep you going.