HSSF之Excel下载

/**
     * @param 创建一个Excel表格
     * @param title 表格标题名
     * @param headers 表格属性列名数组
     * 

     * HSSF - 提供读写Microsoft Excel XLS格式档案的功能。 

    *XSSF - 提供读写Microsoft Excel OOXML XLSX格式档案的功能。  

*HWPF - 提供读写Microsoft Word DOC格式档案的功能。  
*HSLF - 提供读写Microsoft PowerPoint格式档案的功能。  
*HDGF - 提供读Microsoft Visio格式档案的功能。  
*HPBF - 提供读Microsoft Publisher格式档案的功能。  
*HSMF - 提供读Microsoft Outlook格式档案的功能。
     * 
     */
    public static HSSFSheet createExcel(HSSFWorkbook workbook,String title, String[] headers) 
    {
        // 生成一个表格
        HSSFSheet sheet = workbook.createSheet(title);
        // 设置表格默认列宽度为15个字节
        sheet.setDefaultColumnWidth(20);
       //获取样式一
        HSSFCellStyle styleOne= createStyleOne(workbook);
        // 产生表格标题行
        HSSFRow row = sheet.createRow(0);
        //设置第一行高度
        row.setHeight((short)400);
        for (int i = 0; i < headers.length; i++) 
        {
            HSSFCell cell = row.createCell(i);
            cell.setCellStyle(styleOne);  //设置第一行样式
            HSSFRichTextString text = new HSSFRichTextString(headers[i]);
            cell.setCellValue(text);
        }


        return sheet;
    }

你可能感兴趣的:(java)