码迷,mamicode.com
首页 > 其他好文 > 详细

POI导出Excel——(三)

时间:2017-08-02 10:18:14      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:gtk   2tb   oal   xls   dll   rpm   wmi   wow   rsa   

Jar包

技术分享

 Java代码

package POI;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;

import org.apache.commons.io.FileUtils;
import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;

public class POXExpExcel {
    public static void main(String[] args) {
        String[] title = {"id","name","sex"};
//        创建一个工作簿
        HSSFWorkbook workbook = new HSSFWorkbook();
//        创建一个工作表sheet
        HSSFSheet sheet = workbook.createSheet();
//        创建第一行
        HSSFRow row = sheet.createRow(0);
//        创建一个单元格
        HSSFCell cell = null;
//        创建表头
        for(int i=0;i<title.length;i++){
            cell=row.createCell(i);
            cell.setCellValue(title[i]);
        }
//        从第二行开始追加数据
        for(int i=1;i<=10;i++){
//            创建第i行
            HSSFRow nextRow = sheet.createRow(i);
//            参数代表第几列
            HSSFCell cell2 = nextRow.createCell(0);
            cell2.setCellValue("a"+i);
            cell2 = nextRow.createCell(1);
            cell2.setCellValue("user"+i);
            cell2 = nextRow.createCell(2);
            cell2.setCellValue("男");
        }
//        创建一个文件
        File file = new File("E:/POI_TEST1.xls");
        try {
            file.createNewFile();
//            打开文件流
            FileOutputStream outputStream = FileUtils.openOutputStream(file);
            workbook.write(outputStream);
            outputStream.close();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        
    }
    
}

 结果:

技术分享

 

POI导出Excel——(三)

标签:gtk   2tb   oal   xls   dll   rpm   wmi   wow   rsa   

原文地址:http://www.cnblogs.com/qlqwjy/p/7271627.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!