Java 操作Word书签(二):添加文本、图片、表格到书签内容

如果你不相信努力和时光,那么成果就会是第一个选择辜负你的。不要去否定你自己的过去,也不要用你的过去牵扯你现在的努力和对未来的展望。不是因为拥有希望你才去努力,而是去努力了,你才有可能看到希望的光芒。Java 操作Word书签(二):添加文本、图片、表格到书签内容,希望对大家有帮助,欢迎收藏,转发!站点地址:www.bmabk.com,来源:原文

在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书签(二):添加文本、图片、表格到书签内容

 

(本文完)

转载请注明出处!

 

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。

文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/209405.html

(0)
小半的头像小半

相关推荐

极客之音——专业性很强的中文编程技术网站,欢迎收藏到浏览器,订阅我们!