1.网上找到poi-3.8的源码文件
2.在eclipse中新建一个java 工程Test
3.把源码中poi-3.8\src\java下的所有文件拷贝到新建工程Test的src下
4.刷新Test项目,这是可以看到项目报错,是因为缺少依赖包,commons-codec-1.8.jar和commons-logging-1.0.4.jar,
将这两jar包拷贝到Test项目中,然后 点击项目右键--Build Path--Add Build Path,刷新,这是Test项目不报错了。
5.找到你需要修改的类,修改完,保证不报错。
6.右键点击Test项目--Build Project编译项目。编译好的.class文件在项目的workspace中的项目bin目录中
7.右键点击poi-3.8.jar --打开方式--WinRar文件管理器,打开jar包找到你要替换的的.class文件所在目录,替换掉你要替换的.class文件
8.这时修改后的jar包可以导入项目中使用
The maximum number of cell styles was exceeded. You can define up to 4000 styles in a .xls workbook错误
The maximum number of cell styles was exceeded. You can define up to 4000 styles in a .xls workbook错误
- CellStyle style = workbook.createCellStyle(); // createCellStyle放在循环外面
- Font font = workbook.createFont();
- font.setBoldweight(Font.BOLDWEIGHT_BOLD);
- style.setFont(font);
- for (int i = 0; i < 10000; i++) {
- Row row = sheet.createRow(i);
- Cell cell = row.createCell((short) 0);
- cell.setCellStyle(style);
- }