spire.doc for java 设置table文字自动换行
时间: 2023-08-12 17:03:25 浏览: 142
要在 Spire.Doc for Java 中设置表格文字自动换行,您可以使用以下代码:
```java
// 加载文档
Document doc = new Document("input.docx");
// 获取第一个表格
Table table = doc.getSections().get(0).getTables().get(0);
// 获取表格中的所有行
TableRowCollection rows = table.getRows();
// 循环遍历每一行
for (TableRow row : rows) {
// 获取行中的所有单元格
TableCellCollection cells = row.getCells();
for (TableCell cell : cells) {
// 获取单元格中的段落
ParagraphCollection paragraphs = cell.getParagraphs();
for (Paragraph paragraph : paragraphs) {
// 设置段落中的文本自动换行
paragraph.getFormat().setWrapText(true);
}
}
}
// 保存文档
doc.saveToFile("output.docx", FileFormat.Docx_2013);
```
这段代码将会遍历文档中第一个表格的所有单元格,并将单元格中的段落的文本设置为自动换行。最后,将修改后的文档保存为一个新的文件。
阅读全文