浏览 2131 次
锁定老帖子 主题:jxl进行excel数据导入数据库
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2009-02-05
今天说下excel数据导入数据库,我使用的是jxl,首先项目中应该有jxl的jar 下面说说页面,选择xls文件 <form name="form1" action ="ExcelAction" method="post"> <input name="file" type ="file" /> <input type ="submit" value = "import"> </form> action 配置这里就不说了, 具体说说action 如何操作
String path = request.getParameter("file"); InputStream is = new FileInputStream(path); jxl.Workbook rwb = Workbook.getWorkbook(is); Sheet rs = rwb.getSheet(0); //读取在职sheet String message0 = excelManage.ExcelEmployee(rs); excelManage这个是我的spring 中的bean ,你们也可以直接进行导入操作。 具体实现: String message = ""; int colNum=rs.getColumns();//列数 int rowNum=rs.getRows();//行数 System.out.println("rowNum colNum ------------------"+rowNum+","+colNum); for(int j=1;j<rowNum;j++){ TEmployee tEmployee = new TEmployee(); for(int i=0;i<colNum;i++){ Cell c = rs.getCell(i,j); String strc = c.getContents(); System.out.println("Cell("+i+", "+j+")" + " value : " + strc + "; type : " + c.getType()); } } c.getContents();则为某行列的值,可以将此值放入所插入对象中,最后save(Entityobject) 这篇文章可借鉴,有一定共性。 声明:ITeye文章版权属于作者,受法律保护。没有作者书面许可不得转载。
推荐链接
|
|
返回顶楼 | |