java poi excel 导入导出_java 后台poi导入导出Excel到数据库

public static voidmain(String[] args) throws IOException {//文件所在路径

String filePath = "C:\\Users\\Administrator\\Desktop\\1234.xls";//导入Excel

newuploadExcelAction().impExcel(filePath);// //导出Excel//String expFilePath = "C:/testBook.xls" ;//new uploadExcelAction().expExcel(expFilePath);

}/**

* 导入Excel

* @param execelFile*/

public voidimpExcel(String filePath) throws FileNotFoundException, IOException{//构造 Workbook 对象,execelFile 是传入文件路径(获得Excel工作区)

Workbook book = null;

FileInputStream path=newFileInputStream (filePath);try{//Excel 2003获取方法

book = newHSSFWorkbook(path);

}catch(Exception ex) {//Excel 2007获取方法

book = newXSSFWorkbook(path);

}//读取表格的第一个sheet页

Sheet sheet = book.getSheetAt(0);//定义 row、cell

Row row;

String cell;//总共有多少行,从0开始

int totalRows =sheet.getLastRowNum() ;

//总共多少列

int totalCells = sheet.getRow(0).getLastCellNum();//循环输出表格中的内容,首先循环取出行,再根据行循环取出列

for (int i = 1; i <= totalRows; i++) {

row=sheet.getRow(i);//处理空行

if(row == null){continue;

}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");

}

}

}

//导出public voidexpExcel(String expFilePath){

OutputStream os= null;

Workbook book= null;try{//输出流

os = newFileOutputStream(expFilePath);//创建工作区(97-2003)

book = newHSSFWorkbook();//创建第一个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();

}

}

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值