在 Word 文档中,段落和文本背景颜色是文档设计的一个重要元素。适当的段落和文本背景色可以起到突出显示特定段落或文本、增强文本对比度以方便阅读的作用,同时还能填补版面空白,从而帮助排版。本文将介绍如何使用 Spire.Doc for Java 通过 Java 程序设置段落和文本的背景颜色。
安装 Spire.Doc for Java
首先,您需要在 Java 程序中添加 Spire.Doc.jar 文件作为依赖项。您可以从此链接下载 JAR 文件;如果您使用 Maven,则可以通过在 pom.xml 文件中添加以下代码导入 JAR 文件。
<repositories>
    <repository>
        <id>com.e-iceblue</id>
        <name>e-iceblue</name>
        <url>https://repo.e-iceblue.cn/repository/maven-public/</url>
    </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>e-iceblue</groupId>
        <artifactId>spire.doc</artifactId>
        <version>13.10.6</version>
    </dependency>
</dependencies>
为 Word 文档中的段落设置背景色
在设置段落的背景颜色时,需要先获取指定段落,然后使用 Paragraph.getFormat().setBackColor() 方法设置其背景颜色。具体操作步骤如下:
- 创建一个 Document 类的对象。
- 使用 Document.loadFromFile() 方法加载 Word 文档。
- 使用 Document.getSections().get() 方法获取文档第一节。
- 使用 Section.getParagraphs().get() 方法获取该节第四个段落。
- 使用 Paragraph.getFormat().setBackColor() 方法设置该段落的背景颜色。
- 使用 Document.saveToFile() 方法保存文档。
- Java
import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import com.spire.doc.Section;
import com.spire.doc.documents.Paragraph;
import java.awt.*;
public class setParagraphBackgroundColor {
    public static void main(String[] args) {
        //创建一个Document类的对象
        Document document = new Document();
        //载入Word文档
        document.loadFromFile("示例.docx");
        //获取文档第一节
        Section section = document.getSections().get(0);
        //获取该节第四个段落
        Paragraph paragraph = section.getParagraphs().get(3);
        //将此段落的背景颜色设置为浅灰色
        paragraph.getFormat().setBackColor(Color.LIGHT_GRAY);
        //保存文档
        document.saveToFile("段落背景色.docx", FileFormat.Docx_2013);
        document.dispose();
    }
}
为 Word 文档中的文本设置背景色
Spire.Doc for Java 提供了 Document.findAllString() 方法用于查找 Word 文档中出现的所有特定文本,以及 TextRange.getCharacterFormat().setTextBackgroundColor() 方法用于设置特定文本的背景颜色。为现有文本设置背景色的详细操作步骤如下。
- 创建一个 Document 类的对象。
- 使用 Document.loadFromFile() 方法加载 Word 文档。
- 使用 Document.findAllString() 方法查找“糖分摄入”并获取所有查找结果。
- 循环遍历所有查找结果。
- 使用 TextSelection.getAsOneRange() 方法将一个查找结果获取为一个文本范围。
- 使用 TextRange.getCharacterFormat().setTextBackgroundColor() 方法设置文本范围的背景颜色。
- 使用 Document.saveToFile() 方法保存文档。
- Java
import com.spire.doc.Document;
import com.spire.doc.FileFormat;
import com.spire.doc.documents.TextSelection;
import com.spire.doc.fields.TextRange;
import java.awt.*;
public class setTextBackgroundColor {
    public static void main(String[] args) {
        //创建Document类的对象
        Document document = new Document();
        //载入Word文档
        document.loadFromFile("示例.docx");
        //找到要设置背景色的文本
        TextSelection[] textSelections = document.findAllString("糖分摄入", false, true);
        //循环遍历查找结果
        for (TextSelection selection : textSelections){
            //获取一个结果为文本范围
            TextRange textRange = selection.getAsOneRange();
            //设置该查找结果的背景色
            textRange.getCharacterFormat().setTextBackgroundColor(Color.CYAN);
        }
        //为第一个查找结果设置背景色
        //TextRange textRange = textSelections[0].getAsOneRange();
        //textRange.getCharacterFormat().setTextBackgroundColor(Color.CYAN);
        //保存文档
        document.saveToFile("文本背景色.docx", FileFormat.Docx_2013);
        document.dispose();
    }
}
申请临时 License
如果您希望删除结果文档中的评估消息,或者摆脱功能限制,请该Email地址已收到反垃圾邮件插件保护。要显示它您需要在浏览器中启用JavaScript。获取有效期 30 天的临时许可证。
 



 
					



