日期:2014-05-16  浏览次数:20866 次

Apache POI HSSF读写Excel总结

Apache POI HSSF和XSSF读写EXCEL总结
HSSF是指2007年以前的,XSSF是指2007年版本以上的
这个还是比较好用的,这些总结来自Apache的官方向导的点点滴滴
还有好多没有没有写的,详细的请参考http://poi.apache.org/spreadsheet/quick-guide.html

public class SummaryHSSF {

public static void main(String[] args) throws IOException {
   //创建Workbook对象(这一个对象代表着对应的一个Excel文件)
                     //HSSFWorkbook表示以xls为后缀名的文件
   Workbook wb = new HSSFWorkbook();
   //获得CreationHelper对象,这个应该是一个帮助类
   CreationHelper helper = wb.getCreationHelper();
   //创建Sheet并给名字(表示Excel的一个Sheet)
   Sheet sheet1 = wb.createSheet("HSSF_Sheet_1");  
   Sheet sheet2 = wb.createSheet("HSSF_Sheet_2");
   //Row表示一行Cell表示一列
   Row row = null;
   Cell cell = null;
   for(int i=0;i<60;i=i+2){
    //获得这个sheet的第i行
    row = sheet1.createRow(i);
    //设置行长度自动   
    //row.setHeight((short)500);
    row.setHeightInPoints(20);
    //row.setZeroHeight(true);
    for(int j=0;j<25;j++){  
     //设置每个sheet每一行的宽度,自动,根据需求自行确定
     sheet1.autoSizeColumn(j+1, true);
     //创建一个基本的样式
     CellStyle cellStyle = SummaryHSSF.createStyleCell(wb);
     //获得这一行的每j列
     cell = row.createCell(j);
     if(j==0){
      //设置文字在单元格里面的位置
      cellStyle = SummaryHSSF.setCellStyleAlignment(cellStyle, CellStyle.ALIGN_CENTER, CellStyle.VERTICAL_CENTER);
      //先创建字体样式,并把这个样式加到单元格的字体里面
      cellStyle.setFont(createFonts(wb));
      //把这个样式加到单元格里面
      cell.setCellStyle(cellStyle);     
      //给单元格设值
      cell.setCellValue(true);
     }else if(j==1){
      //设置文字在单元格里面的位置
      cellStyle = SummaryHSSF.setCellStyleAlignment(cellStyle, CellStyle.ALIGN_CENTER, CellStyle.VERTICAL_CENTER);
      //设置这个样式的格式(Format)
      cellStyle = SummaryHSSF.setCellFormat(helper,cellStyle, "#,##0.0000");     
      //先创建字体样式,并把这个样式加到单元格的字体里面
      cellStyle.setFont(createFonts(wb));
      //把这个样式加到单元格里面
      cell.setCellStyle(cellStyle);
      //给单元格设值
      cell.setCellValue(new Double(2008.2008));
     }else if(j==2){
      cellStyle = SummaryHSSF.setCellStyleAlignment(cellStyle, CellStyle.ALIGN_CENTER, CellStyle.VERTICAL_CENTER);     
      cellStyle.setFont(createFonts(wb));
      cell.setCellStyle(cellStyle);
      cell.setCellValue(helper.createRichTextString("RichString"+i+j));     
     }else if(j==3){
      cellStyle = SummaryHSSF.setCellStyleAlignment(cellStyle, CellStyle.ALIGN_CENTER, CellStyle.VERTICAL_CENTER);
      cellStyle = SummaryHSSF.setCellFormat(helper,cellStyle, "MM-yyyy-dd");
      cell.setCellStyle(cellStyle);
      cell.setCellValue(new Date());
     }else if(j==24){
      cellStyle = SummaryHSSF.setCellStyleAlignment(cellStyle, CellStyle.ALIGN_CENTER, CellStyle.VERTICAL_CENTER);
      cellStyle.setFont(createFonts(wb));
      //设置公式
      cell.setCellFormula("SUM(E"+(i+1)+":X"+(i+1)+")");     
     }else{     
      cellStyle = SummaryHSSF.setCellStyleAlignment(cellStyle, CellStyle.ALIGN_CENTER, CellStyle.VERTICAL_CENTER);
      cellStyle = SummaryHSSF.setFillBackgroundColors(cellStyle,IndexedColors.ORANGE.getIndex(),IndexedColors.ORANGE.getIndex(),CellStyle.SOLID_FOREGROUND);
      cell.setCellStyle(cellStyle);
      cell.setCellValue(1);
     }
    }
   }
   //输出
   OutputStream os = new FileOutputStream(new File("c://SummaryHSSF.xls"));
   wb.write(os);
   os.close();  
}
/**
* 边框
* @param wb
* @return
*/
public static CellStyle createStyleCell(Workbook wb){
   CellStyle cellStyle = wb.createCellStyle();
   //设置一个单元格边框颜色
   cellStyle.setBorderBottom(CellStyle.BORDER_THIN);
   cellStyle.setBorderTop(CellStyle.BORDER_THIN);
   cellStyle.setBorderLeft(CellStyle.BORDER_THIN);
   cellStyle.setBorderRight(CellStyle.BORDER_THIN);
   //设置一个单元格边框颜色
   cellStyle.setRightBorderColor(IndexedColors.BLACK.getIndex());
   cellStyle.setLeftBorderColor(IndexedColors.BLACK.getIndex());
   cellStyle.setBottomBorderColor(IndexedColors.BLACK.getIndex());
   cellStyle.setTopBorderColor(IndexedColors.BLACK.getIn