public class ReadExl {
public static void main(String args[])
{
String path="c:\\测试数据2.xls";//Excel文件URL
try{
InputStream is = new FileInputStream(path);//写入到FileInputStream
jxl.Workbook wb = Workbook.getWorkbook(is); //得到工作薄
jxl.Sheet st = wb.getSheet(0);//得到工作薄中的第一个工作表
//Cell cell=st.getCell(1,1);//得到工作表的第一个单元格,即A1
//String content=cell.getContents();//getContents()将Cell中的字符转为字符串
int row=st.getRows();
int col=st.getColumns();
for(int i=1;i<row;i++){
for(int j=0;j<col;j++){
Cell cell0 = st.getCell(j, i);//得到工作表的第一个单元格,即A1
String content0 = cell0.getContents();
}
}
wb.close();//关闭工作薄
is.close();//关闭输入流
}catch(FileNotFoundException e){
e.printStackTrace();
}catch(IOException e){
e.printStackTrace();
}catch(BiffException e){
e.printStackTrace();
}
导入jxl.jar包到jsp,然后基本操作都差不多