jxl.jar
Warning:Maximum number of format records exceeded.Using default format.
最近经常做Excel报表,jxl组件还是比较好的,但是这个还是非常过分。
修改源代码:
jxl.biff.FormattingRecords private static final int maxFormatRecordsIndex = 0x1b9; |
将上面那句改为:
private static final int maxFormatRecordsIndex = Integer.MAX_VALUE; |
需要重新编译并打包,当然可以下载我已经编译打包好的新的版本:
具体过程是:找到源码,加压缩放到一个Eclipse java项目中,修改上述文件,找到对应的class文件,然后把jxl.jar 使用winrar打开,然后将这个class拖到对应的包路径即可。