`
IT_Dodo
  • 浏览: 13848 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

poi

    博客分类:
  • java
 
阅读更多

 

 Workbook workbook  = new XSSFWorkbook();

    Sheet sheet = workbook.createSheet();

   

    sheet.setColumnWidth(0, 4500);

 

 

//设置为文本格式

Font font1 = workbook.createFont();

font1.setFontHeightInPoints((short) 14);

    CellStyle cellStyle  = workbook.createCellStyle();

    cellStyle.setAlignment(HSSFCellStyle.ALIGN_CENTER); // 居中  

    cellStyle.setVerticalAlignment(HSSFCellStyle.VERTICAL_CENTER);

    cellStyle.setFont(font1);

 

 

Row row0 = sheet.createRow(0);

    row0.setRowStyle(cellStyle);

    Row row3 = sheet.createRow(2);

 

//合并单元格

sheet.addMergedRegion( new CellRangeAddress(0, 2, 2, 2) );

 

OutputStream out = response.getOutputStream();

workbook.write(response.getOutputStream());

out.close();// 关闭文件输出流

 

 

public static String formatCell(Cell cell){

    String ret;

switch (cell.getCellType()) {

case Cell.CELL_TYPE_STRING:

ret = cell.getStringCellValue();

break;

case Cell.CELL_TYPE_FORMULA:

Workbook wb = cell.getSheet().getWorkbook();

CreationHelper crateHelper = wb.getCreationHelper();

FormulaEvaluator evaluator = crateHelper.createFormulaEvaluator();

ret = formatCell(evaluator.evaluateInCell(cell));

break;

case Cell.CELL_TYPE_NUMERIC:

if (HSSFDateUtil.isCellDateFormatted(cell)) {// 处理日期格式、时间格式  

                SimpleDateFormat sdf = null;  

                if (cell.getCellStyle().getDataFormat() == HSSFDataFormat  

                        .getBuiltinFormat("h:mm")) {  

                    sdf = new SimpleDateFormat("HH:mm");  

                 } else {// 日期  

                     sdf = new SimpleDateFormat("yyyy-MM-dd");  

                 }  

                 Date date = cell.getDateCellValue();  

                 ret = sdf.format(date);  

             } else if (cell.getCellStyle().getDataFormat() == 58) {  

                 // 处理自定义日期格式:m月d日(通过判断单元格的格式id解决,id的值是58)  

                 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");  

                 double value = cell.getNumericCellValue();  

                 Date date = org.apache.poi.ss.usermodel.DateUtil  

                         .getJavaDate(value);  

                 ret = sdf.format(date);  

             } else {  

                 ret = NumberToTextConverter.toText(cell.getNumericCellValue());

             } 

break;

case Cell.CELL_TYPE_BLANK:

ret = "";

break;

case Cell.CELL_TYPE_BOOLEAN:

ret = String.valueOf(cell.getBooleanCellValue());

break;

case Cell.CELL_TYPE_ERROR:

ret = null;

break;

default:

ret = null;

}

return ret; //有必要自行trim

    }

 

分享到:
评论

相关推荐

    POI导出 POI导出 POI导出

    POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI导出POI...

    poi全家桶ooxml-schemas/poi/poi-examples/poi-ooxml/poi-ooxml-schemas/poi-scratchpad

    标题中的"poi全家桶ooxml-schemas/poi/poi-examples/poi-ooxml/poi-ooxml-schemas/poi-scratchpad"提及的是Apache POI项目中的多个关键组件和目录结构。Apache POI是一个开源的Java库,专门用于读写Microsoft Office...

    POI poi相关所有jar包 poi jar包 poi最全jar包

    Apache POI 是一个开源项目,专门用于处理Microsoft Office格式的文件,如Excel(.xlsx、.xls)、Word(.doc、.docx)和PowerPoint(.ppt、.pptx)。这个压缩包包含了POI项目中所有必要的jar包,总计十二个,确保了...

    POI3.7/POI3.8/POI3.9

    Apache POI 是一个开源项目,专门用于处理Microsoft Office格式的文件,如Excel、Word和PowerPoint。POI库为Java开发者提供了读写Microsoft Office文档的能力,使得在Java应用程序中操作这些文件变得简单。这里提到...

    POI中文帮助文档_POI_

    Apache POI是一个开源项目,主要用于读取和写入Microsoft Office格式的文件,如Word(.doc/.docx)、Excel(.xls/.xlsx)和PowerPoint(.ppt/.pptx)。这个“POI中文帮助文档”提供了全面的指南,帮助开发者理解和...

    poi-3.17 poi-3.16

    Apache POI 是一个开源项目,专门用于处理微软的Office文档格式,如Excel、Word和PowerPoint。POI 提供了一套 Java API,使得开发者可以在Java应用程序中读写Microsoft Office格式的文件。标题中的"poi-3.17 poi-...

Global site tag (gtag.js) - Google Analytics