[java,2017-05-04] 合并word文档

Posted shijt

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[java,2017-05-04] 合并word文档相关的知识,希望对你有一定的参考价值。

import java.io.File;

import com.aspose.words.Document;
import com.aspose.words.ImportFormatMode;

public class DocMerge {
    public static void main(String[] args) throws Exception {

        Document docAll=new Document("e:/a.doc");
        String tmp_path="e:/b.doc";
        File file=new File(tmp_path);
        if(!file.exists())
            return;
        Document doc=new Document(tmp_path);
        docAll.appendDocument(doc, ImportFormatMode.USE_DESTINATION_STYLES);
        
        String targetPath = "e:/ab.doc";
        docAll.save(targetPath);
    }



以上是关于[java,2017-05-04] 合并word文档的主要内容,如果未能解决你的问题,请参考以下文章

如何通过AsposeWords合并两个word文档

python第三方库实现word邮件合并功能

[原创]java合并word文件

Java 合并Word文档

如何通过java将多个word文档合成一个wor

Java利用poi生成word(包含插入图片,动态表格,行合并)