1. 程式人生 > 其它 >POI低版本像高版本升級時新舊方法對應

POI低版本像高版本升級時新舊方法對應

低版本升級高版本

1.1 顏色定義變化

舊:

setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index)

cellStyle.setBottomBorderColor(HSSFColor.BLACK.getIndex());

cellStyle.setTopBorderColor(HSSFColor.BLACK.getIndex());

新:

setFillForegroundColor(IndexedColors.SKY_BLUE.index)

setBottomBorderColor(IndexedColors.BLACK.getIndex());

setTopBorderColor(IndexedColors.BLACK.getIndex());

1.2 獲取單元格格式

舊:

cell.getCellType() < 2

CELL_TYPE_NUMERIC =0

CELL_TYPE_STRING = 1

CELL_TYPE_FORMULA = 2

Cell.CELL_TYPE_NUMERIC

新:

cell.getCellTypeEnum().NUMERIC == CellType.NUMERIC || cell.getCellTypeEnum().NUMERIC == CellType.STRING

CellType.NUMERIC

1.3 設定單元格格式

舊 :

row.getCell(0).setCellType(Cell.CELL_TYPE_STRING);

新 :

row.getCell(0).setCellType(CellType.STRING);

1.4 設定單元格垂直居中樣式

舊:

setAlignment(XSSFCellStyle.ALIGN_CENTER); // 居中

setVerticalAlignment(XSSFCellStyle.VERTICAL_CENTER);//垂直

新:

setAlignment(HorizontalAlignment.CENTER); // 居中

setVerticalAlignment(VerticalAlignment.CENTER); //垂直

1.5 設定邊框

舊:

setBorderBottom(HSSFCellStyle.BORDER_THIN); //下邊框

setBorderLeft(HSSFCellStyle.BORDER_THIN);

setBorderRight(HSSFCellStyle.BORDER_THIN);

setBorderTop(HSSFCellStyle.BORDER_THIN);

新:

setBorderBottom(BorderStyle.THIN); //下邊框

setBorderLeft(BorderStyle.THIN);

setBorderRight(BorderStyle.THIN);

setBorderTop(BorderStyle.THIN);

1.6 合併單元格

舊:

addMergedRegion(new CellRangeAddress(1, 1,(short) 0, (short) 0));// 起始行,結束行,起始列,結束列

新:

addMergedRegion(new Region(1, (short) 0, 1,(short) 0));// 起始行,起始列,結束行,結束列

1.7 設定字型加粗

setBoldweight(HSSFFont.BOLDWEIGHT_BOLD);

新:

setBold(true)

1.8 字型顏色

舊:

setColor(HSSFColor.BLACK.index)

新:

setColor(IndexedColors.BLACK.getIndex())

1.9設定樣式

舊:

setFillPattern(HSSFCellStyle.SOLID_FOREGROUND);

setFillForegroundColor(HSSFColor.GREY_25_PERCENT.index);

新:

setFillPattern(FillPatternType.SOLID_FOREGROUND);

setFillForegroundColor(IndexedColors.SKY_BLUE.index);