zoukankan      html  css  js  c++  java
  • PoI 3.17 已过时代码对比

    PoI 3.17 已过时代码对比
    颜色定义变化
    旧版本 : HSSFColor.BLACK.index
    新版本 : IndexedColors.BLACK.index

    获取单元格格式
    旧版本 : cell.getCellType 与之应对的单元格格式 HSSFCell.CELL_TYPE_BLANK
    新版本 : cell.getCellTypeEnum 与之对应的单元格格式 BLANK (org.apache.poi.ss.usermodel.CellType.BLANK)

    设置单元格格式
    旧版本 : row.getCell(0).setCellType(Cell.CELL_TYPE_STRING);
    新版本 : row.getCell(0).setCellType(CellType.STRING);

    设置单元格垂直居中样式
    旧版本 : XSSFCellStyle cellStyle = wb.createCellStyle();
        cellStyle.setAlignment(XSSFCellStyle.ALIGN_CENTER); // 居中
        cellStyle.setVerticalAlignment(XSSFCellStyle.VERTICAL_CENTER);//垂直
    新版本 : XSSFCellStyle cellStyle = wb.createCellStyle();
        cellStyle.setAlignment(HorizontalAlignment.CENTER); // 居中
        cellStyle.setVerticalAlignment(VerticalAlignment.CENTER); //垂直

    设置边框
    旧版本 : cellStyle.setBorderBottom(HSSFCellStyle.BORDER_THIN); //下边框
    新版本 : cellStyle.setBorderBottom(BorderStyle.THIN); //下边框

    合并单元格
    旧版本 : sheet.addMergedRegion(new CellRangeAddress(1, 1,(short) 0, (short) 0));// 起始行,结束行,起始列,结束列
    新版本 : sheet.addMergedRegion(new Region(1, (short) 0, 1,(short) 0));// 起始行,起始列,结束行,结束列

    设置字体加粗
    旧版本: font.setBoldweight((short) 400);
    新版本: font.setBold(true);

    待更新 . .

  • 相关阅读:
    fastcgi与cgi的区别
    SolidWorks eDraring Control
    基于SolidWorks的CAD系统研究
    构建以快速设计为目标的PDM系统
    模型图纸数据库设计
    VB开发SolidWorks实现机械产品参数化设计
    参数化图形驱动及Web零件库的研究开发
    基于PDM的 标准件库管理
    子窗口设计及编程
    某机械设备CAD系统的构造与设计
  • 原文地址:https://www.cnblogs.com/qingmuchuanqi48/p/11966472.html
Copyright © 2011-2022 走看看