2012-03-11 122 views

回答

3

如果是我,这是什么,我会用

DOCX

2

最好的选择(为DOCX格式至少)是 http://docx.codeplex.com/

在下面的博客文章,你可以找到的代码示例比较DocX,Microsoft的OOXML API和经典Office Interop库的非常简单的文档操作: http://cathalscorner.blogspot.com/2010/06/cathal-why-did-you-create-docx.html

+0

在模板文件我已经预先制作的表,我不知道docx有填充预制表的功能。 – user1261700 2012-03-11 06:39:51

+1

绝对,当您使用DocX.Load函数读取现有文档时,生成的文档对象具有可用于处理单元格中的数据的Tables列表。更多信息(这是为了创建表格,但它显示了我正在谈论的对象)http://cathalscorner.blogspot.com/2010/06/docx-and-tables.html – Dirk 2012-03-11 21:44:35

0

如果您对商业产品感兴趣并使用DOCX文件格式,可以试试我们的GemBox.Document组件。

它具有自己的读/写引擎和简单的内容模型,可以使用没有安装MS Word。

下面是一个简单的C#代码如何创建,将使用邮件合并功能的数据扩展表一个简单的模板文件:

// Use the component in free mode. 
ComponentInfo.SetLicense("FREE-LIMITED-KEY"); 

// Define DataTable with two columns: 'Name' and 'Surname', and fill it with some data. 
// You don't have to do this if you already have a DataTable instance. 
var dataTable = new DataTable("People") 
{ 
    Columns = 
    { 
     new DataColumn("Name", typeof(string)), 
     new DataColumn("Surname", typeof(string)) 
    }, 
    Rows = 
    { 
     new object[] { "John", "Doe" }, 
     new object[] { "Fred", "Nurk" }, 
     new object[] { "Hans", "Meier" }, 
     new object[] { "Ivan", "Horvat" } 
    } 
}; 

// Create and save a template document. 
// You don't have to do this if you already have a template document. 
// This code is only provided as a reference how template document should look like. 
var document = new DocumentModel(); 
document.Sections.Add(
    new Section(document, 
     new Table(document, 
      new TableRow(document, 
       new TableCell(document, 
        new Paragraph(document, "Name")), 
       new TableCell(document, 
        new Paragraph(document, "Surname"))), 
      new TableRow(document, 
       new TableCell(document, 
        new Paragraph(document, 
         new Field(document, FieldType.MergeField, "RangeStart:People"), 
         new Field(document, FieldType.MergeField, "Name"))), 
       new TableCell(document, 
        new Paragraph(document, 
         new Field(document, FieldType.MergeField, "Surname"), 
         new Field(document, FieldType.MergeField, "RangeEnd:People"))))))); 
document.Save("TemplateDocument.docx", SaveOptions.DocxDefault); 

// Load a template document. 
document = DocumentModel.Load("TemplateDocument.docx", LoadOptions.DocxDefault); 

// Mail merge template document with DataTable. 
// Important: DataTable.TableName and RangeStart/RangeEnd merge field names must match. 
document.MailMerge.ExecuteRange(dataTable); 

// Save the mail merged document. 
document.Save("Document.docx", SaveOptions.DocxDefault); 
相关问题