3

我在使用 Microsoft Office Interop Assemblies (Office 2007) 和 ASP.NET 3.5 将多个 word 文档合并在一起时遇到了一些困难。我可以合并文档,但缺少一些格式(即字体和图像)。

我当前的合并代码如下所示。

private void CombineDocuments() {
        object wdPageBreak = 7;
        object wdStory = 6;
        object oMissing = System.Reflection.Missing.Value;
        object oFalse = false;
        object oTrue = true;
        string fileDirectory = @"C:\documents\";

        Microsoft.Office.Interop.Word.Application WordApp = new Microsoft.Office.Interop.Word.Application();
        Microsoft.Office.Interop.Word.Document wDoc = WordApp.Documents.Add(ref oMissing, ref oMissing, ref oMissing, ref oMissing);

        string[] wordFiles = Directory.GetFiles(fileDirectory, "*.doc");
        for (int i = 0; i < wordFiles.Length; i++) {
            string file = wordFiles[i];
            wDoc.Application.Selection.Range.InsertFile(file, ref oMissing, ref oMissing, ref oMissing, ref oFalse);
            wDoc.Application.Selection.Range.InsertBreak(ref wdPageBreak);
            wDoc.Application.Selection.EndKey(ref wdStory, ref oMissing);
        }
        string combineDocName = Path.Combine(fileDirectory, "Merged Document.doc");
        if (File.Exists(combineDocName))
            File.Delete(combineDocName);
        object combineDocNameObj = combineDocName;
        wDoc.SaveAs(ref combineDocNameObj, ref m_WordDocumentType, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
    } 

我不一定关心这是如何完成的。如果需要,它可以通过 PDF 输出。我只是希望格式能够延续。

4

1 回答 1

-1

在添加文档时,您正在跳过模板名称,这就是为什么 ut 缺少格式。

它应该看起来像

string defaultTemplate="your template name with full path"; 

或者

默认模板名称

string defaultTemplate="Normal.dot";

wordApplication.Documents.Add(ref defaultTemplate,............

将此链接用作参考:http ://devpinoy.org/blogs/keithrull/archive/2007/05/23/how-to-merge-multiple-microsoft-word-documents-in-c.aspx

于 2010-05-26T13:40:21.687 回答