Importing Excel Sheets

Does anyone have an idea how I can import/extract data from an excel spreadsheet in JSP.I need to extract data from an Excel sheet and store it in a database.
[172 byte] By [mol-mola] at [2007-10-3 0:44:53]
# 1

hi!

It's very very simple to do

Just download load the POI project (poi-2.5.1-final-20040804.jar file) from the Apache Jakarta site - it's a open source project

just put the jar file into your class path.

import the packages which i mentioned below...(it's a minimum requirement)

import org.apache.poi.hssf.usermodel.*;

import org.apache.poi.hssf.*;

import org.apache.poi.poifs.filesystem.*;

and refer the document (for coding) which include in that jar file itself... they included the example like Openning the workbook and fetching the rows....

so u develop the rest of the things...

Note: download bin & src.

vinu@sun.sdna at 2007-7-14 17:39:28 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...