gpt4 book ai didi

java - 使用 HSSF workBook 通过 JAVA 编写 excel

转载 作者:行者123 更新时间:2023-11-30 03:52:59 24 4
gpt4 key购买 nike

我正在使用 HSSF 工作簿使用 java 将数据写入 Excel,现在我有一个包含 n 个单词的列名称,如果我正常插入它,它会出现在同一行中,我想将句子分成两部分不同的行并插入到同一单元格中。

下面是我用来设置列的代码

 rowhead.createCell((short) 0).setCellValue("Hi there it is my lengthy column please help");

谢谢,汤姆

最佳答案

您只需使用 Java 换行符 '\n' 字符将句子分成 2 行,然后将 WrapText 设置为 true :

    Cell cell = rowhead.createCell((short) 0));
cell.setCellValue("Hi there it is my lengthy \n column please help");
CellStyle cs = wb.createCellStyle();
cs.setWrapText(true);
cell.setCellStyle(cs);

关于java - 使用 HSSF workBook 通过 JAVA 编写 excel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23915210/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com