亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

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

發布時間:2020-08-09 07:34:07 來源:ITPUB博客 閱讀:171 作者:Mia張 欄目:編程語言

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

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

Jar 文件獲取及導入:

方法 1 通過官網 下載jar 文件包。下載后,解壓文件。并將lib文件夾下的Spire.Doc.jar文件導入到java程序。參考如下導入效果:

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

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

Java 代碼示例

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

 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();
     }
 }

文本、圖片添加效果:

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

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

 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();
     }
 }

表格添加效果:

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

(本文完)

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海南省| 赣榆县| 襄垣县| 新安县| 浦东新区| 武宁县| 朝阳县| 武乡县| 泾阳县| 百色市| 庄河市| 色达县| 平度市| 西盟| 濮阳县| 崇礼县| 万年县| 伊通| 务川| 闵行区| 淮安市| 资溪县| 伽师县| 苗栗县| 峨眉山市| 蚌埠市| 河东区| 和林格尔县| 金溪县| 高邮市| 凤翔县| 阿坝县| 泽州县| 和静县| 石景山区| 铁力市| 珲春市| 大庆市| 那坡县| 白城市| 夏河县|