码迷,mamicode.com
首页 > 其他好文 > 详细

POI生成Excel强制换行

时间:2015-08-19 10:45:09      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:

自动换行的设置: 

HSSFCellStyle cellStyle=workbook.createCellStyle();         
cellStyle.setWrapText(true);         
cell.setCellStyle(cellStyle);   

强制换行:

<pre name="code" class="html">HSSFCell cell = row.createCell((short)0);      
cell.setCellStyle(cellStyle);                            
cell.setCellValue(new HSSFRichTextString("hello/r/n world!"));   

修改代码如码如下

HSSFCell cell = row.createCell((short)0);     
cellStyle.setWrapText(true);//先设置为自动换行     
cell.setCellStyle(cellStyle);                            
cell.setCellValue(new HSSFRichTextString("hello/r/n world!"));   

POI生成Excel强制换行

标签:

原文地址:http://www.cnblogs.com/dtts/p/4741382.html

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