40

我正在使用 Apache POI 将值输入到电子表格中。这些值有换行符,我能够成功使用此代码:

CellStyle style = cell.getCellStyle()
style.setWrapText(true)
cell.setCellStyle(style)

不幸的是,虽然文本正确换行,但行的高度并不总是增长到足以显示内容。如何确保我的行始终是正确的高度?

4

11 回答 11

25
currentRow.setHeight((short)-1)

适用于 XSSFCell 和 Excel 2013

于 2015-03-18T19:41:24.213 回答
21
HSSFWorkbook workbook=new HSSFWorkbook();
HSSFSheet sheet =  workbook.createSheet("FirstSheet");  
HSSFRow rowhead=   sheet.createRow((short)0);
HSSFCellStyle style = workbook.createCellStyle();
style.setWrapText(true);
row.setRowStyle(style);
row.getCell(0).setCellStyle(style);

上面的代码将生成行的动态高度。

于 2015-02-09T10:37:15.810 回答
5

我让它工作的唯一方法是编写我自己的实现来计算行高。该代码现在作为Taro项目发布,因此您可以使用它。它有许多方便的方法,可以让您用更少的代码行编写 Excel 文件。

如果您更愿意将实现放在您自己的代码中,您可以在SpreadsheetTab类中找到它。中间有一个 autoSizeRow(int rowIndex) 方法。它基本上遍历行并为每个单元格找到文本行数,然后使用字体大小来计算最佳单元格高度。然后它将行高设置为最高单元格的高度。

于 2013-10-03T17:08:47.810 回答
4

查看所有此链接,它提供了一些代码来根据列宽和单元格内容手动计算行的正确高度。我没有亲自测试过。为方便起见,还粘贴在下面:

// Create Font object with Font attribute (e.g. Font family, Font size, etc) for calculation
java.awt.Font currFont = new java.awt.Font(fontName, 0, fontSize);
AttributedString attrStr = new AttributedString(cellValue);
attrStr.addAttribute(TextAttribute.FONT, currFont);

// Use LineBreakMeasurer to count number of lines needed for the text
FontRenderContext frc = new FontRenderContext(null, true, true);
LineBreakMeasurer measurer = new LineBreakMeasurer(attrStr.getIterator(), frc);
int nextPos = 0;
int lineCnt = 0;
while (measurer.getPosition() < cellValue.length())
{
    nextPos = measurer.nextOffset(mergedCellWidth); // mergedCellWidth is the max width of each line
    lineCnt++;
    measurer.setPosition(nextPos);
}

Row currRow = currSht.getRow(rowNum);
currRow.setHeight((short)(currRow.getHeight() * lineCnt));

// The above solution doesn't handle the newline character, i.e. "\n", and only
// tested under horizontal merged cells.
于 2014-01-20T18:03:16.780 回答
2
cell.getRow().setHeight((short) -1);

在 apache poi 3.9 或更高版本中为 HSSFCell 工作

于 2016-03-04T07:01:43.537 回答
2

它适用于 Excel 2010。我将单元格长度的限制设置为 50 个字符

    Row row = sheet.createRow(0);
    CellStyle style = workbook.createCellStyle();
    style.setWrapText(true);
    if (data.length() > 50) {
        for (int i = 1; i <= Math.abs(data.length() / 50); i++) {
            data = data.substring(0, i * 50) + "\n" + data.substring(i * 50);
        }
        Cell cell = row.createCell(0);
        row.setRowStyle(style);
        cell.setCellStyle(style);
        cell.setCellValue(data);
        sheet.autoSizeColumn(0);
    }
于 2019-04-21T09:05:07.400 回答
1

您不能直接调整单元格高度。但是你可以改变行的高度

final HSSFSheet fs = wb.createSheet("sheet1");
final HSSFRow row0 = fs.createRow(0);
final HSSFCell cellA1 = row0.createCell(0);
row0.setHeight((short)700);
于 2013-12-13T10:50:45.603 回答
1

在我的情况下,一个可靠的解决方案是计算行数并将行高设置为默认行高的倍数:

int numberOfLines = cell.getStringCellValue().split("\n").length;
row.setHeightInPoints(numberOfLines*sheet.getDefaultRowHeightInPoints());
于 2021-06-30T10:55:01.290 回答
-1

行aitosize为我工作:

cell.getRow().setHeight((short)0);

这里0用于计算自动高度。

于 2013-12-13T10:55:14.343 回答
-1

“LibreOffice Calc”和“WPS 电子表格”的解决方法,合并销售的自动高度。

我在主文档的右侧添加一列(在我的情况下它是 32 列)将宽度设置为具有相同文本的所有合并单元格。将样式 WrapText 设置为 true 将样式设置为 Align Top 复制将在合并单元格中显示的内容 将该列设置为隐藏 设置行高 = -1

代码示例:

   private void applyRowHightWorkaroundForMergedCells(HSSFCell cell0) {
       HSSFSheet sheet = cell0.getSheet();
       HSSFRow row = cell0.getRow();
    
       String value = cell0.getStringCellValue();
       HSSFCell cell = row.createCell(32);
       sheet.setColumnWidth(32, 32000);
       cell.getCellStyle().setWrapText(true);
       cell.getCellStyle().setVerticalAlignment(VerticalAlignment.TOP);
       cell.setCellValue(value);
       sheet.setColumnHidden(32, true);
       row.setHeight((short) -1);
   }
于 2020-10-19T13:22:34.477 回答
-10

//我们可以使用表格的列宽

Ex: sheet.setColumnWidth(0, 2000);
于 2013-10-03T05:53:42.477 回答