单元格中的新行

Aspose.Cells - 单元格中的新行

为了确保单元格中的文本可以被读取,可以应用明确的行尾和文本换行。文本换行将单元格中的一行变成了多行,而明确的行尾则将文本换行放在您想要的确切位置。

要在单元格中换行,使用Style.setTextWrapped方法。

Java

 // Add Text to the First Cell with Explicit Line Breaks

cell.get(0, 0).setValue("I am using \nthe latest version of \nAspose.Cells \nto test this functionality");

//Get Cell's Style

Style style = cell.get(0, 0).getStyle();

//Set Text Wrap property to true

style.setTextWrapped(true);

//Set Cell's Style

cell.get(0, 0).setStyle(style);

Apache POI SS - HSSF XSSF - 单元格中的新行

CellStyle.setWrapText应设置为true以包装文本。

Java

 Row row = sheet.createRow(2);

Cell cell = row.createCell(2);

cell.setCellValue("Use \n with word wrap on to create a new line");

//to enable newlines you need set a cell styles with wrap=true

CellStyle cs = wb.createCellStyle();

cs.setWrapText(true);

cell.setCellStyle(cs);

下载运行代码

下载示例代码