码迷,mamicode.com
首页 > 系统相关 > 详细

linux导出Excel The maximum column width for an individual cell is 255 characters

时间:2017-08-18 11:04:57      阅读:721      评论:0      收藏:0      [点我收藏+]

标签:ade   int   imu   har   header   解决方案   rac   logs   style   

linux环境到处Excel报错: The maximum column width for an individual cell is 255 characters

 

解决方案:

for (int i = 0; i < headerList.size(); i++) {  
            int colWidth = sheet.getColumnWidth(i)*2;
            if(colWidth<255*256){
                sheet.setColumnWidth(i, colWidth < 3000 ? 3000 : colWidth);    
            }else{
                sheet.setColumnWidth(i,6000 );
            }
        }

 

linux导出Excel The maximum column width for an individual cell is 255 characters

标签:ade   int   imu   har   header   解决方案   rac   logs   style   

原文地址:http://www.cnblogs.com/frank-quan/p/7387936.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!