This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
importing data from excel to Mysql database using jsp code
shyamkumar bopannachengalaiah
Ranch Hand
Joined: Dec 30, 2008
Posts: 100
posted
0
i need to import data from excel to mysql database using jsp. How can i achieve this? Kindly help me.if there is any sample code kindly give me.
Brijesh Sah
Greenhorn
Joined: Jan 22, 2009
Posts: 9
posted
0
You can use java's poi jar functionality. It will work for you i guess.
Bauke Scholtz
Ranch Hand
Joined: Oct 08, 2006
Posts: 2458
posted
0
To be more precise: Apache POI HSSF/XSSF. It isn't part of Sun Java or so as you seem to think.
You can use Apache POI to read Excel files and convert them to useable Java objects.
That said, you shouldn't be doing this in a JSP. Writing raw Java code in a JSP file instead of Java classes is receipt for trouble. JSP is a presentation technology, use it where it is for. Use taglibs and EL only, no scriptlets.