写点什么

如何通过 Java 代码设置 Word 文档页边距

作者:在下毛毛雨
  • 2023-02-23
    四川
  • 本文字数:1232 字

    阅读完需:约 4 分钟

如何通过Java 代码设置 Word 文档页边距

页边距是指页面的边线到文字的距离。通常可在页边距内部的可打印区域中插入文字和图形,也可以将某些项目放置在页边距区域中(如页眉、页脚和页码等)。在我们用的 Word 文档中,都会设置页边距统一标准格式,页边距的标准为上下页边距为 2.54CM,左右边距为 2.8CM。边距也可以根据自己的需要进行更改。今天这篇文章将为您展示如何通过编程方式,设置 Word 文档页边距。下面是我整理的具体步骤及方法,并附上 Java 代码供大家参考。

程序环境:

方法 1:手动引入。将 https://www.e-iceblue.cn/Introduce/Free-Spire-Doc-JAVA.html下载到本地,解压,找到 lib 文件夹下的 Spire.Doc.jar 文件。在 IDEA 中打开如下界面,将本地路径中的 jar 文件引入 Java 程序


方法 2: 如果您想通过 Maven安装,则可以在 pom.xml 文件中添加以下代码导入 JAR 文件。

<repositories>
       <repository>
           <id>com.e-iceblue</id>
           <url>https://repo.e-iceblue.cn/repository/maven-public/</url>
       </repository>
   </repositories>
<dependencies>
   <dependency>
       <groupId>e-iceblue</groupId>
       <artifactId>spire.doc.free</artifactId>
       <version>5.2.0</version>
   </dependency>
</dependencies>
复制代码

设置 Word 文档页边距

我们可以使用 Section.getPageSetup().getMargins() 方法来获取页面的页边距设置,再用 MarginsF 类下的方法设置上下左右页边距。详细操作步骤如下:

  • 创建一个 Document 的对象。

  • 使用 Document.loadFromFile()方法载入 Word 文档。

  • 使用 Document.getSections().get() 方法获取文档第一节。

  • 使用 Section.getPageSetup().getMargins() 方法获取第一节的页边距。

  • 分别使用 MarginsF.setTop()MarginsF.setBottom()MarginsF.setLeft()MarginsF.setRight() 方法设置上下左右页边距。

  • 使用 Document.saveToFile() 方法保存文档。

完整代码

Java

import com.spire.doc.Document;import com.spire.doc.FileFormat;import com.spire.doc.Section;import com.spire.doc.documents.MarginsF;
public class setPageMargins { public static void main(String []args){
//创建一个Document的对象 Document document = new Document();
//载入Word文档 document.loadFromFile("生死疲劳.docx");
//获取文档第一节 Section section = document.getSections().get(0);
//获取第一节的页边距 MarginsF pageMargin = section.getPageSetup().getMargins();
//设置第一节的上下左右页边距 pageMargin.setTop(17.9f); pageMargin.setBottom(17.9f); pageMargin.setLeft(17.9f); pageMargin.setRight(17.9f);
//保存文档 document.saveToFile("设置页边距.docx", FileFormat.Docx_2013); }}
复制代码

效果图

—本文完—

发布于: 刚刚阅读数: 5
用户头像

还未添加个人签名 2022-06-02 加入

还未添加个人简介

评论

发布
暂无评论
如何通过Java 代码设置 Word 文档页边距_C#_在下毛毛雨_InfoQ写作社区