NullMoneyException
java.life.NullMoneyException
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);
    }

posted on 2018-05-04 14:43  NullMoneyException  阅读(160)  评论(0编辑  收藏  举报