溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

Java如何實(shí)現(xiàn)給Word文件添加文字水印

發(fā)布時(shí)間:2022-02-16 09:07:42 來源:億速云 閱讀:1101 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要為大家展示了“Java如何實(shí)現(xiàn)給Word文件添加文字水印”,內(nèi)容簡(jiǎn)而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“Java如何實(shí)現(xiàn)給Word文件添加文字水印”這篇文章吧。

方法思路

在給Word每一頁添加水印前,首先需要在Word文檔每一頁正文的最后一個(gè)字符后面插入“連續(xù)”分節(jié)符,然后在每一節(jié)的頁眉段落里添加藝術(shù)字類型的形狀對(duì)象,并設(shè)置藝術(shù)字的坐標(biāo)位置、樣式、對(duì)齊方式等。最后保存文檔。

Jar引入

在程序中引入 Free Spire.Doc for Java 中的Spire.Doc.jar文件(該文件在lib文件夾下);如果需要通過Maven下載導(dǎo)入,可進(jìn)行如下配置pom.xml:

<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.1.0</version>
    </dependency>
</dependencies>

Java代碼

給每頁添加圖片水印時(shí),可參考如下步驟:

  1. 創(chuàng)建Document類的對(duì)象,并通過Document.loadFromFile(String fileName)方法加載Word文檔。

  2. 通過Document.getSections().get(int index)方法獲取指定節(jié)。

  3. 通過Section.getHeadersFooters().getHeader()方法獲取頁眉,HeaderFooter.addParagraph()方法添加段落到頁眉。

  4. 創(chuàng)建ShapeObject類的對(duì)象,并傳入?yún)?shù)設(shè)置形狀類型為Text_Plain_Text類型的藝術(shù)字。并調(diào)用方法設(shè)置藝術(shù)字樣式,如藝術(shù)字高度、寬度、旋轉(zhuǎn)、顏色、對(duì)齊方式等。

  5. 通過Paragraph.getChildObjects().add(IdocumentObject entity)方法添加藝術(shù)字到段落。

  6. 最后,通過Document.saveToFile(String fileName, FileFormat fileFormat)方法保存文檔。

不同頁面中設(shè)置不一樣的文字水印效果,只需要獲取該頁面對(duì)應(yīng)節(jié)的頁眉段落,然后參考上述用到的方法步驟逐一添加即可。

下面是完整的Java代碼示例:

import com.spire.doc.*;
import com.spire.doc.documents.*;
import com.spire.doc.fields.ShapeObject;

import java.awt.*;

public class DifferentTextWatermark {
    public static void main(String[] args) {
        //加載Word測(cè)試文檔
        Document doc = new Document();
        doc.loadFromFile("test.docx");

        //獲取文檔第一節(jié)
        Section section1 = doc.getSections().get(0);

        //定義水印文字的縱向坐標(biāo)位置
        float y = (float) (section1.getPageSetup().getPageSize().getHeight()/3);

        //添加文字水印1
        HeaderFooter header1 = section1.getHeadersFooters().getHeader();//獲取頁眉
        header1.getParagraphs().clear();//刪除原有頁眉格式的段落
        Paragraph para1= header1.addParagraph();//重新添加段落
        //添加藝術(shù)字并設(shè)置大小
        ShapeObject shape1 = new ShapeObject(doc, ShapeType.Text_Plain_Text);
        shape1.setWidth(362);
        shape1.setHeight(118);
        //設(shè)置藝術(shù)字文本內(nèi)容、位置及樣式(即文本水印字樣)
        shape1.setRotation(315);
        shape1.getWordArt().setText("內(nèi)部使用");
        shape1.setFillColor(new Color(128,128,128));
        shape1.setLineStyle(ShapeLineStyle.Single);
        shape1.setStrokeColor(new Color(128,128,128));
        shape1.setStrokeWeight(0.5);
        shape1.setVerticalPosition(y);
        shape1.setHorizontalAlignment(ShapeHorizontalAlignment.Center);
        para1.getChildObjects().add(shape1);

        //同理設(shè)置第二節(jié)頁眉中的文字水印2
        Section section2 = doc.getSections().get(1);
        HeaderFooter header2 = section2.getHeadersFooters().getHeader();
        header2.getParagraphs().clear();
        Paragraph para2= header2.addParagraph();
        ShapeObject shape2 = new ShapeObject(doc, ShapeType.Text_Plain_Text);
        shape2.setWidth(362);
        shape2.setHeight(118);
        shape2.setRotation(315);
        shape2.getWordArt().setText("絕密資料");
        shape2.setFillColor(new Color(221,160,221));
        shape2.setLineStyle(ShapeLineStyle.Single);
        shape2.setStrokeColor(new Color(221,160,221));
        shape2.setStrokeWeight(0.5);
        shape2.setVerticalPosition(y);
        shape2.setHorizontalAlignment(ShapeHorizontalAlignment.Center);
        para2.getChildObjects().add(shape2);

        //同理設(shè)置第三節(jié)中的頁眉中的文字水印3
        Section section3 = doc.getSections().get(2);
        HeaderFooter header3 = section3.getHeadersFooters().getHeader();
        header3.getParagraphs().clear();
        Paragraph para3= header3.addParagraph();
        ShapeObject shape3 = new ShapeObject(doc, ShapeType.Text_Plain_Text);
        shape3.setWidth(362);
        shape3.setHeight(118);
        shape3.setRotation(315);
        shape3.getWordArt().setText("禁止傳閱");
        shape3.setFillColor(new Color(70,130,180));
        shape3.setLineStyle(ShapeLineStyle.Single);
        shape3.setStrokeColor(new Color(70,130,180));
        shape3.setStrokeWeight(0.5);
        shape3.setVerticalPosition(y);
        shape3.setHorizontalAlignment(ShapeHorizontalAlignment.Center);
        para3.getChildObjects().add(shape3);

        //保存文檔
        doc.saveToFile("DifferentTextWatermark.docx",FileFormat.Docx_2013);
        doc.dispose();
    }
}

如圖,每一頁均可顯示不同的文字水印效果:

Java如何實(shí)現(xiàn)給Word文件添加文字水印

以上是“Java如何實(shí)現(xiàn)給Word文件添加文字水印”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI