在微软Word或是WPS中,如果我们想要突出显示指定的文本内容,可以用查找替换来更改格式的方式进行突出显示。但如果我们不使用微软Word和WPS等软件,或是想要在我们的程序中集成这样突出显示指定文本内容的功能,我们可以使用本文将介绍的方法,使用代码实现突出显示指定文本内容。
本文所使用的方法需要用到免费的Free Spire.Doc for Java,需要先添加Jar文件到项目中。

1. 通过Maven安装

如果使用Maven,将以下代码添加到“prom.xml”文件中即可。

<repositories>
        <repository>
            <id>com.e-iceblue</id>
            <name>e-iceblue</name>
         <url>https://repo.e-iceblue.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>e-iceblue</groupId>
        <artifactId>spire.doc.free</artifactId>
        <version>5.2.0</version>
    </dependency>
</dependencies>

2. 手动添加Jar

Free Spire.Doc for Java官网下载文件包,加压后在项目依赖项中添加Jar文件即可。

找到并突出显示指定文本内容

突出显示文本通常用添加文字背景色的方法,代码实现需要四个步骤,详细操作步骤如下:

  • 创建 Document 类的对象并载入Word文档。
  • Document.findAllString() 方法找到所有“牡蛎”文本。
  • 在所有找到的文本中循环使用 TextSelection.getAsOneRange().getCharacterFormat() 方法获取文本格式,并用 CharacterFormat.setHighlightColor() 方法设置文本突出显示为黄色。
  • Document.saveToFile() 方法保存Word文档。
    代码示例:
import com.spire.doc.*;
import com.spire.doc.documents.TextSelection;
import com.spire.doc.formatting.CharacterFormat;
import java.awt.*;

public class FindAndHightText {
    public static void main(String[] args){
        //创建 Document 类的对象并载入Word文档
        Document document = new Document("Sample.docx");

        //找到所有“牡蛎”文本
        TextSelection[] textSelections = document.findAllString("牡蛎", false, true);

        //在所有找到的文本中循环获取文本格式并设置文本突出显示为黄色
        for (TextSelection selection : textSelections) {
            CharacterFormat characterFormat = selection.getAsOneRange().getCharacterFormat();
            characterFormat.setHighlightColor(Color.YELLOW);
        }

        //保存Word文档
        document.saveToFile("突出显示指定文本内容.docx", FileFormat.Docx_2013);
    }
}

效果示意:
突出显示文本内容

以上代码中的引用的方法均来自免费的Free Spire.Doc for Java。


大丸子
12 声望3 粉丝