Pro JSPAdvanced JSP coding questions. Beginning questions will be redirected to the Beginning JSP forum.
Welcome to the p2p.wrox.com Forums.
You are currently viewing the Pro JSP section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
hi,
I want to import data from excel sheet to mysql using JSP.. But i am not getting any information about how to do it. So any body can help regarding this mater.
Jakarta POI allows you to programmatically read Microsoft Office formats, such as Microsoft Excel. http://jakarta.apache.org/poi/
Once you've read them into your Java runtime, use JDBC to output the data to MySQL. I don't see any reason why you should do this in JSP. You should keep this kind of implementation in Java classes.