[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文档的主要内容,如果未能解决你的问题,请参考以下文章