How to convert MYSQL data to Microsoft excel format using JSP

Hi All,I NEED A JSP CODE TO RETRIVE DATA FROM THE MYSQL SERVER AND THEN PRODUCE THE RESULT IN MICROSOFT EXCEL SHEET.BENJAMIN
[145 byte] By [benjamin.cbea] at [2007-11-27 5:58:03]
# 1
Can you please shout a little louder? I am too deaf to understand you.
BalusCa at 2007-7-12 16:32:00 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

I think you misunderstand what it means to be a developer. You actually *write* code, you don't get it presented to you on a plate.

So to retrieve data from the database, use JDBC or for example Hibernate.

To store data in an excel sheet, either do it the easy way and store the data in a comma separated values file (CSV) or a tab delimited file, or else you will have to use an api like POI to write the excel sheet.

http://jakarta.apache.org/poi/index.html

http://jakarta.apache.org/poi/hssf/quick-guide.html

gimbal2a at 2007-7-12 16:32:00 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...