admin 管理员组文章数量: 887018
JAVA - 使用Apache POI生成word(二) 设置纸张大小、调整纸张方向
前言
之前开发时,需要将纸张方向由纵向改为横向,查询资料得出只需要设置一下纸张的长度与宽度便可实现相同的效果。
1. pom引入依赖
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>poi-ooxml</artifactId>
<version>4.1.1</version>
</dependency>
<dependency>
<groupId>org.apache.poi</groupId>
<artifactId>ooxml-schemas</artifactId>
<version>1.4</version>
</dependency>
2. 相关代码
import org.apache.poi.xwpf.usermodel.XWPFDocument;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTPageSz;
import org.openxmlformats.schemas.wordprocessingml.x2006.main.CTSectPr;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.math.BigInteger;
/**
* 设置纸张大小
*
* @param document doc对象
* @param width 宽
* @param height 长
*/
public static void setPageSize(XWPFDocument document, long width, long height) {
CTSectPr sectPr = document.getDocument().getBody().addNewSectPr();
CTPageSz pgsz = sectPr.isSetPgSz() ? sectPr.getPgSz() : sectPr.addNewPgSz();
pgsz.setW(BigInteger.valueOf(width));
pgsz.setH(BigInteger.valueOf(height));
}
/**
* 保存文件
*
* @param document doc对象
* @param savePath 保存路径
* @param fileName 文件名称
*/
public static void saveDoc(XWPFDocument document, String savePath, String fileName) throws IOException {
File file = new File(savePath);
if (!file.exists()) {
// 判断生成目录是否存在,不存在时创建目录。
file.mkdirs();
}
// 保存
fileName += ".docx";
FileOutputStream out = new FileOutputStream(new File(savePath + File.separator + fileName));
document.write(out);
// 关闭资源
out.flush();
out.close();
document.close();
}
public static void main(String[] args) throws IOException {
XWPFDocument document = new XWPFDocument();
// 将纸张大小设置为横向A4
setPageSize(document, 16840, 11907);
// 保存文件
String savePath = "D:\\poi";
String fileName = "PoiWord";
saveDoc(document, savePath, fileName);
}
结果如下:
width与height的取值规则
规则是纸张的长度(磅数)* 20
例横向A4纸的大小是 29.7(厘米)* 21(厘米),首先厘米转磅数在乘以20
宽:29.7 * 28.35 * 20 = 16839.9 ≈ 16840
长:21 * 28.35 * 20 = 11907
版权声明:本文标题:JAVA - 使用Apache POI生成word(二) 设置纸张大小、调整纸张方向 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.freenas.com.cn/jishu/1726310999h934415.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论