如何用java将excel导入oracle

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用java将excel导入oracle相关的知识,希望对你有一定的参考价值。

思路:用户选择要导入的EXCEL文件,上传至WEB服务器。然后将文件存放目录传给POI类。通过对row循环取到cell的值,最后insert到ORACLE中。

public boolean saleDeptToDB(String spreadSheet)throws HekException
        
        boolean flag = false;
        IDBConn db = DBConn.getInstance();
        IDBOperate dbOp = DBOperate.getInstance();
        
        Connection conn = db.getConn();
        PreparedStatement pstmt = null;
        try
            HSSFWorkbook workbook = new HSSFWorkbook(new FileInputStream(spreadSheet));
            HSSFSheet sheet = workbook.getSheetAt(0);
            
            String sql = "insert into tableName(DEPT_ID,DEPT_CODE,DEPT_DESC,ITEM_NO,ITEM_CATE,BUDGET_QTY,BUDGET_AMOUNT,TIME_ID)";
            sql +="values(?,?,?,?,?,?,?,?)";
            
            pstmt = conn.prepareStatement(sql);
            
            for(int rowNumOfSheet=1;rowNumOfSheet
                HSSFRow rowOfSheet = sheet.getRow(rowNumOfSheet);
                HekSaleDeptManual hek = new HekSaleDeptManual();
                
                HSSFCell cell0 = rowOfSheet.getCell((short)0);
                if(cell0 != null)hek.setDeptId((int)cell0.getNumericCellValue());
                
                HSSFCell cell1 =  rowOfSheet.getCell((short)1);
                if(cell1 != null)hek.setDeptCode(cell1.getRichStringCellValue().toString());
                
                HSSFCell cell2 = rowOfSheet.getCell((short)2);
                if(cell2 != null)hek.setDeptDesc(cell2.getRichStringCellValue().toString());
                
                HSSFCell cell3 = rowOfSheet.getCell((short)3);
                if(cell3 != null)hek.setItemNo(cell3.getRichStringCellValue().toString());
                
                HSSFCell cell4 = rowOfSheet.getCell((short)4);
                if(cell4 != null)hek.setItemCate(cell4.getRichStringCellValue().toString());
                
                HSSFCell cell5 = rowOfSheet.getCell((short)5);
                if(cell5 != null)hek.setBudgetQty(cell5.getNumericCellValue());
                
                HSSFCell cell6 = rowOfSheet.getCell((short)6);
                if(cell6 != null)hek.setBudgetQty(cell6.getNumericCellValue());
                
                HSSFCell cell7 = rowOfSheet.getCell((short)7);
                if(cell7 != null)hek.setTimeID(cell7.getRichStringCellValue().toString());
            
                dbOp.insertBathHekDept(pstmt, hek);
            
            pstmt.executeBatch();
            flag = true;
            conn.commit();
        catch(SQLException ex)
            db.rollbackTransaction(conn);
            System.out.println("recordToDB Error: "+ex);
        catch(IOException ioex)
            System.out.println("saleDeptToDB read file Error: "+ioex);
        finally
            db.closePstmt(pstmt);
参考技术A 使用jdbc的 blob字段,可以导入“任何”的文件 参考技术B 用到的JAR包如下(可以直接到POI官网上下载也可以在文章的附件中下载):
poi-3.9-20121203.jar
poi-ooxml-3.9-20121203.jar
poi-ooxml-schemas-3.9-20121203.jar
xmlbeans-2.3.0.jar

可能有冲突的JAR包,如果工程lib中存在,需要删除。
xbean-2.1.0.jar

具体代码如下:
Java代码
package com.yusj;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;

import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;

/**
* 导入和导出Excel文件类
* 支持2003(xls)和2007(xlsx)版本的Excel文件
*
* @author yxm
*/
public class OperationExcelForPOI

public static void main(String[] args)
// 文件所在路径
String execelFile = "C:/Book2007.xlsx" ;
//String execelFile = "C:/Book2003.xls" ;
// 导入Excel
new OperationExcelForPOI().impExcel(execelFile) ;
// 导出Excel
String expFilePath = "C:/testBook.xls" ;
new OperationExcelForPOI().expExcel(expFilePath);


/**
* 导入Excel
* @param execelFile
*/
public void impExcel(String execelFile)
try
// 构造 Workbook 对象,execelFile 是传入文件路径(获得Excel工作区)
Workbook book = null;
try
// Excel 2007获取方法
book = new XSSFWorkbook(new FileInputStream(execelFile));
catch (Exception ex)
// Excel 2003获取方法
book = new HSSFWorkbook(new FileInputStream(execelFile));


// 读取表格的第一个sheet页
Sheet sheet = book.getSheetAt(0);
// 定义 row、cell
Row row;
String cell;
// 总共有多少行,从0开始
int totalRows = sheet.getLastRowNum() ;
// 循环输出表格中的内容,首先循环取出行,再根据行循环取出列
for (int i = 1; i <= totalRows; i++)
row = sheet.getRow(i);
// 处理空行
if(row == null)
continue ;

// 总共有多少列,从0开始
int totalCells = row.getLastCellNum() ;
for (int j = row.getFirstCellNum(); j < totalCells; j++)
// 处理空列
if(row.getCell(j) == null)
continue ;

// 通过 row.getCell(j).toString() 获取单元格内容
cell = row.getCell(j).toString();
System.out.print(cell + "\t");

System.out.println("");

catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();



public void expExcel(String expFilePath)
OutputStream os = null ;
Workbook book = null;
try
// 输出流
os = new FileOutputStream(expFilePath);
// 创建工作区(97-2003)
book = new HSSFWorkbook();
// 创建第一个sheet页
Sheet sheet= book.createSheet("test");
// 生成第一行
Row row = sheet.createRow(0);
// 给第一行的第一列赋值
row.createCell(0).setCellValue("column1");
// 给第一行的第二列赋值
row.createCell(1).setCellValue("column2");
// 写文件
book.write(os);

catch (FileNotFoundException e)
e.printStackTrace();
catch (IOException e)
e.printStackTrace();
finally
// 关闭输出流
try
os.close();
catch (IOException e)
e.printStackTrace();




本回答被提问者和网友采纳

如何用java完成Excel快速的导入导出

参考技术A 导出
现在我们定义好对象了,如何导出Excel --ExcelExportUtil 这个导出工具类
public void testExportExcel_1() throws Exception
ExportParams params = new ExportParams("0328课程表", "日期:2016-03-28", "六年一班");
Workbook workbook = ExcelExportUtil.exportExcel(params, CourseEntity.class,courseList);
FileOutputStream fos = new FileOutputStream("D:/excel/0328课程表.xls");
workbook.write(fos);
fos.close();

我们只要把我们定义好的对象的class传进去,以及对象的集合,Easypoi就可以返回一个Excel的workbook了,同时Easypoi是兼容03版本office和07版本office,你要穿个参数指定下类型及可以了,是不是不是比我们自己写代码简单多了,最少只需要2行代码就可以完成我们的office操作了

导入
我们把导出写完了,导入是不是很复杂呢,也不是,导入也是同样简单,定时实体和上面定义的方式一样
导入是用导入工具类
ImportParams params = new ImportParams();
params.setHeadRows(2);
List<CourseEntity> list = ExcelImportUtil.importExcel(inputStream, CourseEntity.class, params);

定义下表头的参数,然后把流传入进去就可以得到我们的对象列表是不是so easy.赶快来使用吧

以上是关于如何用java将excel导入oracle的主要内容,如果未能解决你的问题,请参考以下文章

如何用JAVA将数据库中的数据导入到excel表格

如何用java完成Excel快速的导入导出

如何用JAVA将Excel中的数据导入到sqlserver的表中

如何用java导入Excel数据到数据库?

如何用Java实现将word里的表格数据写入到excel中去

如何用java来将excel文件转化为html文件问题