3.17版本中apachepoi生成word设置1.5倍行间距
时间: 2024-02-01 10:15:47 浏览: 124
apache-poi-3.17(最新稳定版本)
5星 · 资源好评率100%
您可以使用如下代码设置Apachepoi生成的Word文件中的行间距为1.5倍:
```
XWPFParagraph paragraph = document.createParagraph();
XWPFRun run = paragraph.createRun();
paragraph.setSpacingBetween(1.5);
run.setText("Your text here");
```
其中,`document`为`XWPFDocument`对象,`paragraph`为`XWPFParagraph`对象,`run`为`XWPFRun`对象,`1.5`为所需的行间距大小。您可以根据自己的需求进行调整。
阅读全文