Java 操做Word書籤(二):添加文本、圖片、表格到書籤內容

在Java操做Word書籤(一)中介紹了給Word中的特定段落或文字添加書籤、讀取及刪除已有書籤的方法,本文將繼續介紹Java 操做Word書籤的方法,即如何給已有的書籤添加內容,包括添加文本、圖片、表格等。html

使用工具:Free Spire.Doc for Java (免費版)java

Jar文件獲取及導入:數組

方法1 經過官網下載jar文件包。下載後,解壓文件。並將lib文件夾下的Spire.Doc.jar文件導入到java程序。參考以下導入效果:app

方法2可經過maven倉庫安裝導入。可參考安裝導入方法maven

 

Java代碼示例工具

【示例1】添加圖片、文本到書籤spa

import com.spire.doc.*;
import com.spire.doc.documents.BookmarksNavigator;
import com.spire.doc.documents.Paragraph;
import com.spire.doc.documents.TextWrappingStyle;
import com.spire.doc.fields.DocPicture;

public class AddImgToBookmarkcontent {
    public static void main(String[]args){
        //加載包含書籤的文檔
        Document doc = new Document();
        doc.loadFromFile("test.docx");

        //定位到指定書籤位置起始標籤位置,插入圖片
        BookmarksNavigator bookmarksNavigator1 = new BookmarksNavigator(doc);
        bookmarksNavigator1.moveToBookmark("bookmark1",true,false);
        Paragraph para = new Paragraph(doc);
        DocPicture picture = para.appendPicture("eth.png");
        picture.setTextWrappingStyle(TextWrappingStyle.Through);
        bookmarksNavigator1.insertParagraph(para);

        //定位到指定書籤位置末尾標籤位置,插入文本
        BookmarksNavigator bookmarksNavigator2 = new BookmarksNavigator(doc);
        bookmarksNavigator2.moveToBookmark("bookmark1",false,true);
        bookmarksNavigator2.insertText("新插入的文本!!!");

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

文本、圖片添加效果:code

 

【示例2】添加表格到書籤內容orm

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

public class AddTableToBookmarkcontent {
    public static void main(String[]args){
        //加載包含書籤的文檔
        Document doc = new Document();
        doc.loadFromFile("test.docx");

        //聲明數組內容
        String[][] data =
                {
                        new String[]{"班級", "姓名", "學號"},
                        new String[]{"1班", "劉楠", "Y12534"},
                        new String[]{"2班", "劉莉", "Y12547"},
                        new String[]{"3班", "方紅", "Y12365"},
                };

        //建立表格
        Table table = new Table(doc, true);
        table.resetCells(4, 3);
        for (int i = 0; i < data.length; i++) {
            TableRow dataRow = table.getRows().get(i);
            for (int j = 0; j < data[i].length; j++) {
                TextRange range = dataRow.getCells().get(j).addParagraph().appendText(data[i][j]);
                range.getOwnerParagraph().getFormat().setHorizontalAlignment(HorizontalAlignment.Center);
                range.getCharacterFormat().setFontName("楷體");
                dataRow.getRowFormat().setHorizontalAlignment(RowAlignment.Center);
                dataRow.getCells().get(j).getCellFormat().setVerticalAlignment(VerticalAlignment.Middle);
            }
        }
        //定位到指定書籤位置,添加表格
        BookmarksNavigator bookmarksNavigator = new BookmarksNavigator(doc);
        bookmarksNavigator.moveToBookmark("bookmark1");
        bookmarksNavigator.insertTable(table);

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

表格添加效果:htm

 

(本文完)

轉載請註明出處!

相關文章
相關標籤/搜索