一款開源免費的.NET文檔操作組件——DocX

来源:http://www.cnblogs.com/pengze0902/archive/2016/12/01/6122311.html
-Advertisement-
Play Games

在目前的軟體項目中,都會較多的使用到對文檔的操作,用於記錄和統計相關業務信息。由於系統自身提供了對文檔的相關操作,所以在一定程度上極大的簡化了軟體使用者的工作量。 在.NET項目中如果用戶提出了相關文檔操作的需求,開發者較多的會使用到微軟自行提供的插件,在一定程度上簡化了開發人員的工作量,但是同時也 ...


    在目前的軟體項目中,都會較多的使用到對文檔的操作,用於記錄和統計相關業務信息。由於系統自身提供了對文檔的相關操作,所以在一定程度上極大的簡化了軟體使用者的工作量。

    在.NET項目中如果用戶提出了相關文檔操作的需求,開發者較多的會使用到微軟自行提供的插件,在一定程度上簡化了開發人員的工作量,但是同時也給用戶帶來了一些困擾,例如需要安裝龐大的office,在用戶體驗性就會降低很多,並且在國內,很多人都還是使用wps,這就導致一部分只安裝了wps的使用者很是為難,在對Excel的操作方面,有一個NPOI組件。那麼可能會有人問有沒有什麼辦法讓這些困擾得到解決,答案是肯定的,那就是今天需要介紹的“DocX”組件,接下來我們就來瞭解一下這個組件的功能和用法。

一.DocX組件概述:

   DocX是一個.NET庫,允許開發人員以簡單直觀的方式處理Word 2007/2010/2013文件。 DocX是快速,輕量級,最好的是它不需要安裝Microsoft Word或Office。DocX組件不僅可以完成對文檔的一般要求,例如創建文檔,創建表格和文本,並且還可以創建圖形報表。DocX使創建和操作文檔成為一個簡單的任務。

   它不使用COM庫,也不需要安裝Microsoft Office。在使用DocX組件時,你需要安裝為了使用DocX是.NET框架4.0和Visual Studio 2010或更高版本。

   DocX的主要特點: 

     (1).在文檔中插入,刪除或替換文本。所有標準文本格式都可用。 字體{系列,大小,顏色},粗體,斜體,下劃線,刪除線,腳本{子,超級},突出顯示。

     (2).段落屬性顯示。方向LeftToRight或RightToLeft;縮進;比對。   

     (3).DocX也支持:圖片,超鏈接,表,頁眉和頁腳,自定義屬性。

  有關DocX組件的相關信息就介紹到這裡,如果需要更加深入的瞭解相關信息,可以進入:https://docx.codeplex.com/。

二.DocX相關類和方法解析:

    本文將結合DocX的源碼進行解析,使用.NET Reflector對DLL文件進行反編譯,以此查看源代碼。將DLL文件加入.NET Reflector中,點擊打開文件。  

 1.DocX.Create():創建文檔。

public static DocX Create(Stream stream)
{
    MemoryStream stream2 = new MemoryStream();
    PostCreation(ref Package.Open(stream2, FileMode.Create, FileAccess.ReadWrite));
    DocX cx = Load(stream2);
    cx.stream = stream;
    return cx;
}

 2.Paragraph.Append:向段落添加信息。

public Paragraph Append(string text)
{
    List<XElement> content = HelperFunctions.FormatInput(text, null);
    base.Xml.Add(content);
    this.runs = base.Xml.Elements(XName.Get("r", DocX.w.NamespaceName)).Reverse<XElement>().Take<XElement>(content.Count<XElement>()).ToList<XElement>();
    return this;
}
public Paragraph Bold()
{
    this.ApplyTextFormattingProperty(XName.Get("b", DocX.w.NamespaceName), string.Empty, null);
    return this;
}

 

3.Table.InsertTableAfterSelf:將數據插入表格。

public override Table InsertTableAfterSelf(int rowCount, int coloumnCount)
{
    return base.InsertTableAfterSelf(rowCount, coloumnCount);
}

public virtual Table InsertTableAfterSelf(int rowCount, int coloumnCount)
{
    XElement content = HelperFunctions.CreateTable(rowCount, coloumnCount);
    base.Xml.AddAfterSelf(content);
    return new Table(base.Document, base.Xml.ElementsAfterSelf().First<XElement>());
}

4.CustomProperty:自定義屬性。

public class CustomProperty
{
    // Fields
    private string name;
    private string type;
    private object value;

    // Methods
    public CustomProperty(string name, bool value);
    public CustomProperty(string name, DateTime value);
    public CustomProperty(string name, double value);
    public CustomProperty(string name, int value);
    public CustomProperty(string name, string value);
    private CustomProperty(string name, string type, object value);
    internal CustomProperty(string name, string type, string value);

    // Properties
    public string Name { get; }
    internal string Type { get; }
    public object Value { get; }
}

5.BarChart:創建棒形圖。

public class BarChart : Chart
{
    // Methods
    public BarChart();
    protected override XElement CreateChartXml();

    // Properties
    public BarDirection BarDirection { get; set; }
    public BarGrouping BarGrouping { get; set; }
    public int GapWidth { get; set; }
}

 
public abstract class Chart
{
    // Methods
    public Chart();
    public void AddLegend();
    public void AddLegend(ChartLegendPosition position, bool overlay);
    public void AddSeries(Series series);
    protected abstract XElement CreateChartXml();
    public void RemoveLegend();

    // Properties
    public CategoryAxis CategoryAxis { get; private set; }
    protected XElement ChartRootXml { get; private set; }
    protected XElement ChartXml { get; private set; }
    public DisplayBlanksAs DisplayBlanksAs { get; set; }
    public virtual bool IsAxisExist { get; }
    public ChartLegend Legend { get; private set; }
    public virtual short MaxSeriesCount { get; }
    public List<Series> Series { get; }
    public ValueAxis ValueAxis { get; private set; }
    public bool View3D { get; set; }
    public XDocument Xml { get; private set; }
}

6.Chart的AddLegend(),AddSeries(),RemoveLegend()方法解析:

public void AddLegend(ChartLegendPosition position, bool overlay)
{
    if (this.Legend != null)
    {
        this.RemoveLegend();
    }
    this.Legend = new ChartLegend(position, overlay);
    this.ChartRootXml.Add(this.Legend.Xml);
}

 
public void AddSeries(Series series)
{
    if (this.ChartXml.Elements(XName.Get("ser", DocX.c.NamespaceName)).Count<XElement>() == this.MaxSeriesCount)
    {
        throw new InvalidOperationException("Maximum series for this chart is" + this.MaxSeriesCount.ToString() + "and have exceeded!");
    }
    this.ChartXml.Add(series.Xml);
}
public void RemoveLegend()
{
    this.Legend.Xml.Remove();
    this.Legend = null;
}

   以上是對DocX組件的一些方法的一些簡單解析,如果需要知道更多的方法實現代碼,可自行進行下載查看。

三.DocX功能實現實例:

  1.創建圖表:

        /// <summary>
        /// 創建棒形圖
        /// </summary>
        /// <param name="path">文檔路徑</param>
        /// <param name="dicValue">綁定數據</param>
        /// <param name="categoryName">類別名稱</param>
        /// <param name="valueName">值名稱</param>
        /// <param name="title">圖標標題</param>
        public static bool BarChart(string path,Dictionary<string, ICollection> dicValue,string categoryName,string valueName,string title)
        {
            if (string.IsNullOrEmpty(path))
            {
                throw new ArgumentNullException(path);
            }
            if (dicValue == null)
            {
                throw new ArgumentNullException("dicValue");
            }
            if (string.IsNullOrEmpty(categoryName))
            {
                throw new ArgumentNullException(categoryName);
            }
            if (string.IsNullOrEmpty(valueName))
            {
                throw new ArgumentNullException(valueName);
            }
            if (string.IsNullOrEmpty(title))
            {
                throw new ArgumentNullException(title);
            }
            try
            {
                using (var document = DocX.Create(path))
                {
                    //BarChart圖形屬性設置,BarDirection圖形方向枚舉,BarGrouping圖形分組枚舉
                    var c = new BarChart
                    {
                        BarDirection = BarDirection.Column,
                        BarGrouping = BarGrouping.Standard,
                        GapWidth = 400
                    };
                    //設置圖表圖例位置
                    c.AddLegend(ChartLegendPosition.Bottom, false);
                    //寫入圖標數據
                    foreach (var chartData in dicValue)
                    {
                        var series = new Series(chartData.Key);
                        series.Bind(chartData.Value, categoryName, valueName);
                        c.AddSeries(series);
                    }                  
                    // 設置文檔標題
                    document.InsertParagraph(title).FontSize(20);
                    document.InsertChart(c);
                    document.Save();
                    return true;
                }

            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }

 2.創建一個具有超鏈接、圖像和表的文檔。

        /// <summary>
        /// 創建一個具有超鏈接、圖像和表的文檔。
        /// </summary>
        /// <param name="path">文檔保存路徑</param>
        /// <param name="imagePath">載入的圖片路徑</param>
        /// <param name="url">url地址</param>
        public static void HyperlinksImagesTables(string path,string imagePath,string url)
        {
            if (string.IsNullOrEmpty(path))
            {
                throw new ArgumentNullException(path);
            }
            if (string.IsNullOrEmpty(imagePath))
            {
                throw new ArgumentNullException(imagePath);
            }
            if (string.IsNullOrEmpty(url))
            {
                throw new ArgumentNullException(url);
            }
            try
            {
                using (var document = DocX.Create(path))
                {
                    var link = document.AddHyperlink("link", new Uri(url));
                    var table = document.AddTable(2, 2);
                    table.Design = TableDesign.ColorfulGridAccent2;
                    table.Alignment = Alignment.center;
                    table.Rows[0].Cells[0].Paragraphs[0].Append("1");
                    table.Rows[0].Cells[1].Paragraphs[0].Append("2");
                    table.Rows[1].Cells[0].Paragraphs[0].Append("3");
                    table.Rows[1].Cells[1].Paragraphs[0].Append("4");
                    var newRow = table.InsertRow(table.Rows[1]);
                    newRow.ReplaceText("4", "5");
                    var image = document.AddImage(imagePath);
                    var picture = image.CreatePicture();
                    picture.Rotation = 10;
                    picture.SetPictureShape(BasicShapes.cube);
                    var title = document.InsertParagraph().Append("Test").FontSize(20).Font(new FontFamily("Comic Sans MS"));
                    title.Alignment = Alignment.center;
                    var p1 = document.InsertParagraph();
                    p1.AppendLine("This line contains a ").Append("bold").Bold().Append(" word.");
                    p1.AppendLine("Here is a cool ").AppendHyperlink(link).Append(".");
                    p1.AppendLine();
                    p1.AppendLine("Check out this picture ").AppendPicture(picture).Append(" its funky don't you think?");
                    p1.AppendLine();
                    p1.AppendLine("Can you check this Table of figures for me?");
                    p1.AppendLine();
                    p1.InsertTableAfterSelf(table);
                    var p2 = document.InsertParagraph();
                    p2.AppendLine("Is it correct?");
                    document.Save();
                }
            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
           
        }

 3.將指定內容寫入文檔:

        /// <summary>
        /// 將指定內容寫入文檔
        /// </summary>
        /// <param name="path">載入文件路徑</param>
        /// <param name="content">寫入文件內容</param>
        /// <param name="savePath">保存文件路徑</param>
       public static void ProgrammaticallyManipulateImbeddedImage(string path, string content, string savePath)
        {
            if (string.IsNullOrEmpty(path))
            {
                throw new ArgumentNullException(path);
            }
            if (string.IsNullOrEmpty(content))
            {
                throw new ArgumentNullException(content);
            }
            if (string.IsNullOrEmpty(savePath))
            {
                throw new ArgumentNullException(savePath);
            }
            try
            {
                using (var document = DocX.Load(path))
                {
                    // 確保此文檔至少有一個圖像。
                    if (document.Images.Any())
                    {
                        var img = document.Images[0];
                        // 將內容寫入圖片.
                        var b = new Bitmap(img.GetStream(FileMode.Open, FileAccess.ReadWrite));
                        //獲取此點陣圖的圖形對象,圖形對象提供繪圖功能。
                        var g = Graphics.FromImage(b);
                        // 畫字元串內容
                        g.DrawString
                            (
                                content,
                                new Font("Tahoma", 20),
                                Brushes.Blue,
                                new PointF(0, 0)
                            );
                        // 使用創建\寫入流將該點陣圖保存到文檔中。
                        b.Save(img.GetStream(FileMode.Create, FileAccess.Write), ImageFormat.Png);
                    }
                    else
                    {
                        document.SaveAs(savePath);
                    }  
                }

            }
            catch (Exception ex)
            {
                throw new Exception(ex.Message);
            }
        }

四.總結:

    以上是對DocX組件的API做了一個簡單的解析,並且附上一些創建文檔和創建圖表的方法供開發者參考。


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

-Advertisement-
Play Games
更多相關文章
  • 第一步:訪問:https://www.microsoft.com/zh-cn/software-download/windows10ISO/ 預設就只能下載win10,這怎麼行呢。巨硬程式員貌似沒做服務端驗證。。第二步:瀏覽器控制台輸入以下js代碼: 效果: 需要下載的就快下。指不定哪天就被封了。 ...
  • 目前chrome是我在實現webdriver時運行最穩定的瀏覽器,如何利用webdriver打開多個標簽頁和鏈接呢,到處查找得到的往往只是如何打開標簽頁。打開標簽頁很簡單,chrome瀏覽器打開標簽頁的快捷鍵是ctrl+t,那把ctrl+t的按鍵事件傳入即可,很多種實現方式,以下只列出兩種:1:Ac ...
  • 本文介紹應用程式中添加書籍的保存功能,涉及兩個功能“新增”與“修改”。異常處理的小結。 ...
  • .net初學者,有錯誤歡迎指正。大家共同進步 Response 輸出數據 Reponse對象和Request對象組成了一對發送,接受數據的對象。 發送信息:Reponse.Write("字元串"); Reponse對象最常用的方法是Write,用於向瀏覽器發送信息。使用Write方法輸出的字元串會被 ...
  • 定義一個靜態類,類中定義靜態方法,方法中參數類型前邊加上this修飾符,即可實現對this所指向類的擴展。 有點類似js中通過類的原型去擴展方法,類的實例對象就可以通過對象.方法名去調用 示例如 ...
  • 示例代碼: is a way to use packages that were not designed for that framework. Basically you tell it "Use those targets even though they don't seem to be s ...
  • 在C#中有多個線程同時對某個變數進行操作的時候,我們應該使用原子操作,防止多線程取到的值不是最新的值。 本文介紹了多線程中使用原子操作與不使用原子操作的不同,以及使用原子操作與使用lock鎖來保障多線程執行的唯一性的性能優劣。 ...
  • 在微軟官方關於ef7的介紹中強調,ef7將捨棄database first、model first,只保留code first的使用。這引起了很多人的擔憂,擔憂源自對code first的錯誤理解。因為很多人認為code first是區別於database first與model first的第三種 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...