Apache POI 应用另一篇

66 篇文章 1 订阅
不说了,直接贴代码 package test;

import java.io.FileOutputStream;

import org.apache.poi.hssf.usermodel.HSSFCell;
import org.apache.poi.hssf.usermodel.HSSFCellStyle;
import org.apache.poi.hssf.usermodel.HSSFDataFormat;
import org.apache.poi.hssf.usermodel.HSSFFont;
import org.apache.poi.hssf.usermodel.HSSFRow;
import org.apache.poi.hssf.usermodel.HSSFSheet;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;

public class POI_ExcelDemo {

    /**
     * @param args
     */
    public static void main(String[] args) {
        /**
         * author youjianbo
         * date 2008-6-26
         * 使用Apache POI生成Excel
         * */
        try
        {
            POI_ExcelDemo excelDemo = new POI_ExcelDemo();
            String []values = {"a","b","c","d","e","f","j"};
            //建立工作簿
            HSSFWorkbook workbook = new HSSFWorkbook();
            //建立Excel 页
            HSSFSheet sheet = workbook.createSheet();
            excelDemo.setColumnWidth(sheet);
            //给sheet取名,并设置编码
            workbook.setSheetName(0, "第一张sheet", HSSFWorkbook.ENCODING_UTF_16);
            //建立Excel title
           
            HSSFCellStyle style = excelDemo.createTitleStyle(workbook);
            HSSFRow rowTitle = sheet.createRow(0);
            for(int i=0;i<3;i++)
            {
                HSSFCell cellTitle = rowTitle.createCell((short)i);
                cellTitle.setCellStyle(style);
                cellTitle.setCellValue("The "+(i+1)+" Cell");
            }
            //建立Excel行,这里建立两行三列
            for(int i=1;i<3;i++)
            {
                HSSFRow row = sheet.createRow(i);
                for(int j=1;j<4;j++)
                {
                    HSSFCell cell = row.createCell((short)(j-1));
                    cell.setCellType(HSSFCell.CELL_TYPE_STRING);
                    cell.setEncoding(HSSFCell.ENCODING_UTF_16);
                    cell.setCellStyle(style);
                    cell.setCellValue(values[i*j]);
                }
            }
            //sheet.createFreezePane(3, 2);//分割工作区
            //将生成的excel写入
            String path = excelDemo.getClassPath();
            System.out.println("获得的路径是:"+path);
            FileOutputStream fileWrite = new FileOutputStream(path+"//"+"excelDemo.xls");
            workbook.write(fileWrite);
            fileWrite.flush();
            fileWrite.close();
            System.out.println("Excel 生成成功");
        }catch(Exception e)
        {
            e.printStackTrace();
            System.out.println(e.getMessage());
        }
    }
    //获得工程目录路径
    private String getClassPath()
    {
        return this.getClass().getClassLoader().getResource("").getPath();
    }
    //设置cell Style
    private HSSFCellStyle createTitleStyle(HSSFWorkbook wb) {
        HSSFFont boldFont = wb.createFont();
        boldFont.setFontHeight((short) 200);
        HSSFCellStyle style = wb.createCellStyle();
        style.setFont(boldFont);
        style.setDataFormat(HSSFDataFormat.getBuiltinFormat("###,##0.00"));
        style.setAlignment(HSSFCellStyle.ALIGN_CENTER);
        return style;
    }
    //设置Cell 宽度
    private void setColumnWidth(HSSFSheet sheet)
    {
        //根据你数据里面的记录有多少列,就设置多少列
        sheet.setColumnWidth((short) 0, (short) 3000);
        sheet.setColumnWidth((short) 1, (short) 3000);
        sheet.setColumnWidth((short) 2, (short) 3000);
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值