I am developing a web application with spring-mvc, hibernate and MySQL. I need to :
- export data from Database table to an EXCEL document.
- import an excel file , read data, and insert this data in my Database (MySQL).
In the two case, I am using a large sized excel files with .xls or .xlsx format.
Can you help me to find the best API TO READ/WRITE EXCEL files (Apache poi ,JExcel ,....). And if there are some tutorial dedicated to this need.
I just want to know witch API should i use Apache poi or JExcel and if there is other API and why?.