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);
}
相关文章
- 05-11Java生成 Word文档的并打印解决方案
- 05-11poi读写word模板 / java生成word文档
- 05-11java生成复杂word文档
- 05-11java.lang.NoSuchFieldError: RAW_XML_FILE_HEADER,调用XWPFTemplate动态合并生成一个新的docx文档时报错
- 05-11【Java】用Freemarker完美导出word文档(带图片)
- 05-11Java使用freemarker导出word文档
- 05-11【Java】导出word文档之freemarker导出
- 05-11Java 在Word文档中添加艺术字
- 05-11Java将数据写入word文档(.doc)
- 05-11java 导出数据为word文档(保持模板格式)