Aspose.Word郵件合併之自定義數據源

来源:https://www.cnblogs.com/liszt/archive/2018/07/30/how-to-custom-data-source-in-aspose-word-for-mail-merge.html
-Advertisement-
Play Games

Aspose.Word在進行郵件合併時,預設的幾個重載方法對Database支持比較友好,但是也可以通過自定義數據源來實現從集合或者對象中返回數據進行郵件合併。 自定義數據源主要是通過實現IMailMergeDataSource介面來實現的。官方的例子如下: 參考文檔: https://apiref ...


Aspose.Word在進行郵件合併時,預設的幾個重載方法對Database支持比較友好,但是也可以通過自定義數據源來實現從集合或者對象中返回數據進行郵件合併。

 

自定義數據源主要是通過實現IMailMergeDataSource介面來實現的。官方的例子如下:

 

[C#]

public void MailMergeCustomDataSource()
{
    // Create some data that we will use in the mail merge.
    CustomerList customers = new CustomerList();
    customers.Add(new Customer("Thomas Hardy", "120 Hanover Sq., London"));
    customers.Add(new Customer("Paolo Accorti", "Via Monte Bianco 34, Torino"));

    // Open the template document.
    Document doc = new Document(MyDir + "MailMerge.CustomDataSource.doc");

    // To be able to mail merge from your own data source, it must be wrapped
    // into an object that implements the IMailMergeDataSource interface.
    CustomerMailMergeDataSource customersDataSource = new CustomerMailMergeDataSource(customers);

    // Now you can pass your data source into Aspose.Words.
    doc.MailMerge.Execute(customersDataSource);

    doc.Save(MyDir + "MailMerge.CustomDataSource Out.doc");
}

/// <summary>
/// An example of a "data entity" class in your application.
/// </summary>
public class Customer
{
    public Customer(string aFullName, string anAddress)
    {
        mFullName = aFullName;
        mAddress = anAddress;
    }

    public string FullName
    {
        get { return mFullName; }
        set { mFullName = value; }
    }

    public string Address
    {
        get { return mAddress; }
        set { mAddress = value; }
    }

    private string mFullName;
    private string mAddress;
}

/// <summary>
/// An example of a typed collection that contains your "data" objects.
/// </summary>
public class CustomerList : ArrayList
{
    public new Customer this[int index]
    {
        get { return (Customer)base[index]; }
        set { base[index] = value; }
    }
}

/// <summary>
/// A custom mail merge data source that you implement to allow Aspose.Words 
/// to mail merge data from your Customer objects into Microsoft Word documents.
/// </summary>
public class CustomerMailMergeDataSource : IMailMergeDataSource
{
    public CustomerMailMergeDataSource(CustomerList customers)
    {
        mCustomers = customers;

        // When the data source is initialized, it must be positioned before the first record.
        mRecordIndex= -1;
    }

    /// <summary>
    /// The name of the data source. Used by Aspose.Words only when executing mail merge with repeatable regions.
    /// </summary>
    public string TableName
    {
        get { return "Customer"; }
    }

    /// <summary>
    /// Aspose.Words calls this method to get a value for every data field.
    /// </summary>
    public bool GetValue(string fieldName, out object fieldValue)
    {
        switch (fieldName)
        {
            case "FullName":
                fieldValue = mCustomers[mRecordIndex].FullName;
                return true;
            case "Address":
                fieldValue = mCustomers[mRecordIndex].Address;
                return true;
            default:
                // A field with this name was not found, 
                // return false to the Aspose.Words mail merge engine.
                fieldValue = null;
                return false;
        }
    }

    /// <summary>
    /// A standard implementation for moving to a next record in a collection.
    /// </summary>
    public bool MoveNext()
    {
        if (!IsEof)
            mRecordIndex++;

        return (!IsEof);
    }

    public IMailMergeDataSource GetChildDataSource(string tableName)
    {
        return null;
    }

    private bool IsEof
    {
        get { return (mRecordIndex >= mCustomers.Count); }
    }

    private readonly CustomerList mCustomers;
    private int mRecordIndex;
}

 

參考文檔:

https://apireference.aspose.com/net/words/aspose.words.mailmerging/imailmergedatasource

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 今天去了回客科技 筆試了一波。很遺憾啊,腦袋有思路 但是還沒到手寫代碼很熟練的程度,基本功不到位。 第一道:線程的題:三個線程 +1 一個線程 -1 運算 。 看到網上還有四個線程的,兩個加法計算,兩個減法運算。基本的思路都是一樣的 ,註意看同步處理。 下麵貼出代碼實現: 這裡引申出來了其他問題的思 ...
  • 對象:java是面向對象的編程,對象就相當於我們生活中的一個具體的事物,比如一個手機,它擁有尺寸,顏色,cpu,記憶體等屬性,還擁有上網,打電話等功能。在java中,對象也擁有數據和方法。 類:類就是一組擁有相同屬性和相同方法的對象的集合。 成員變數和局部變數 成員變數:在類的方法外面,能被類中所有的 ...
  • package demo01; import java.text.ParseException;import java.text.SimpleDateFormat;import java.util.Date; public class demo27 { public static void main ...
  • 轉載請註明出處:http://www.cnblogs.com/zhiyong-ITNote/ 一直不習慣linq的擴展方法,每次用的時候,賊不順手,尤其是查數據的時候,這不更新個資料庫這麼簡單地需求都搞了一個小時(好吧,也有心不在焉的因素)。總結了一下,代碼如下: private readonly ...
  • 以下為將被序列化的類Entity: [XmlRoot("Root")] public class Entity { [XmlAttribute(AttributeName = "Attr1")] public string Attribute1; [XmlElement("SecondLevel") ...
  • 在進行 WPF 程式打包發佈的時候如果對程式打包沒有特別高的要求,InnoSetup 足以勝任普通的程式打包發佈需求,它支持安裝包加密,安裝包升級安裝,註冊表操作等常規功能,以下腳本示例中有對常見操作進行相關說明。 [TOC] 簡介 Inno Setup用Delphi寫成,其官方網站同時也提供源程式 ...
  • 前一段時間由於項目需要 .net core 在docker下的部署,途中也遇到很多坑,看了各同行的博客覺得多多少少還是有些問題,原本不想寫此篇文章,由於好友最近公司也需要部署,硬是要求,於是花了些時間寫了下來,並實現docker製作鏡像的過程中先編譯.net core 項目包然後形成鏡像。 (一) ...
  • 字元串的不可變性,從字面的意思上理解,這個“不可變”視乎是不成立的。 通過賦值操作我們發現我們可以更改字元串變數的值,這種改變並不能推翻“字元串不可變性”中的不可變。 也就是說字元串變化並不指的是賦值這種變化。 通過字元串類型和值類型在記憶體中的存儲方式對比看看,字元串中的不可變到底指的是什麼? 值類 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...