poi遇到的问题

Posted 树上的疯子^

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了poi遇到的问题相关的知识,希望对你有一定的参考价值。

1 Could not find acceptable representation with root cause 

解决方法一: 注掉此行代码

解决方法二:把上面的代码换成

response.setContentType("application/json;charset=gb2312");

2

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);

以上是关于poi遇到的问题的主要内容,如果未能解决你的问题,请参考以下文章

转载--我遇到的poi问题,Invalid header signature

java用poi往excel里写数据遇到换行问题

Apache POI - 记导出Excel所遇到的坑

java apache poi shift Rows 遇到运行时异常

我也遇到了java poi合并excel单元格后 边框显示异常 ,异常部分都是合并的单元格?

使用poi进行数据的导出Demo