asp.net導出excel

来源:https://www.cnblogs.com/laoq112/archive/2019/11/21/11903624.html
-Advertisement-
Play Games

asp.net 根據html模板導出excel public class ExcelHelper { /// <summary> /// 根據html模板文件生成excel文件 /// </summary> /// <param name="ds">數據源</param> /// <param na ...


asp.net 根據html模板導出excel

public class ExcelHelper
{
    /// <summary>
    /// 根據html模板文件生成excel文件
    /// </summary>
    /// <param name="ds">數據源</param>
    /// <param name="TemplateFilePath">html模板文件路徑(虛擬路徑而非物理路徑)</param>
    /// <param name="ToFileName">生成的excel文件名,帶尾碼不帶路徑</param>
    /// <returns></returns>
    public static string GetExcel(DataSet ds, string TemplateFilePath, string ToFileName)
    {
        string ToFilePath = SysHelper.GetVirtualPath() + "upload/export_excel/";
        string strOutPath = HttpContext.Current.Server.MapPath(ToFilePath);
        if (!Directory.Exists(strOutPath))
        {
            Directory.CreateDirectory(strOutPath);
        }

        string TemplateContent = GetStringFromTemplate(ds, TemplateFilePath);
        //保存文件
        using (FileStream fs = new FileStream(strOutPath + ToFileName, FileMode.Create))
        {
            using (StreamWriter sw = new StreamWriter(fs))
            {
                sw.Write(TemplateContent);
            }
        }
        return ToFilePath + ToFileName;
    }

    /// <summary>
    /// 根據模板生成字元換
    /// </summary>
    /// <param name="ds"></param>
    /// <param name="TemplateFilePath"></param>
    /// <returns></returns>
    private static string GetStringFromTemplate(DataSet ds, string TemplateFilePath)
    {
        //讀取模板
        string TemplateContent = "";
        using (StreamReader sr = new StreamReader(HttpContext.Current.Server.MapPath(TemplateFilePath)))
        {
            TemplateContent = sr.ReadToEnd();
        }
        
        //解析每個表
        for (int TableIndex = 0; TableIndex < ds.Tables.Count; TableIndex++)
        {
            DataTable dt = ds.Tables[TableIndex];
            //獲取表的模板集合
            string TableTag = string.Format(@"#table.{0}#", TableIndex);//表的標簽
            string pattern = string.Format(@"#table\.{0}#.*?#table\.{0}#", TableIndex);
            Regex reg = new Regex(pattern, RegexOptions.Singleline);
            MatchCollection matchs = reg.Matches(TemplateContent);
            //解析每個模板
            foreach (Match match in matchs)
            {
                string tableTemplate = match.Value;
                string table = "";//解析後內容
                                  //解析每行數據
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    string rowTemplate = tableTemplate.Replace(TableTag, "");//去掉模板標簽
                                                                             //解析行模板
                    for (int j = 0; j < dt.Columns.Count; j++)
                    {
                        string ColumnName = "#table." + TableIndex + "." + dt.Columns[j].ColumnName + "#";
                        rowTemplate = rowTemplate.Replace(ColumnName, dt.Rows[i][j].ToString());
                    }
                    table += rowTemplate;
                }
                //解析完之後替換到模板
                TemplateContent = TemplateContent.Replace(tableTemplate, table);
            }
        }
        return TemplateContent;
    }
}

 

html模板格式

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
</head>
<body>
    <table border="1">
        <tr><td colspan="4" style="text-align:center;">事件彙總表</td></tr>
        <tr>
            <td style="width:200px;">事件名稱</td>
            <td style="width:500px;">事件簡要情況</td>
            <td style="width:100px;">發生時間</td>
            <td style="width:100px;">發生地區</td>
        </tr>
        #table.0#
        <tr>
            <td>#table.0.omtb_title#</td>
            <td>#table.0.omtb_content#</td>
            <td>#table.0.omtb_date#</td>
            <td>#table.0.omtb_address#</td>
        </tr>
        #table.0#
    </table>
</body>
</html>

 

調用方式

string templatepath = SysHelper.GetVirtualPath() + "zfb/pro_list_excel.html",
  outfile = "事件彙總表" + DateTime.Now.ToString("yyyyMMddHHmmss") + ".xls";

string excel_file_path = ExcelHelper.GetExcel(dsSource, templatepath, outfile);

 

附加獲取應用程式虛擬目錄方法

public class SysHelper
{
    public static string GetVirtualPath()
    {
        string path = HttpContext.Current.Request.ApplicationPath;
        return path + (path != "/" ? "/" : "");  //以/結尾
    }
}

 


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

-Advertisement-
Play Games
更多相關文章
  • 本文梯子 前言 1、.net core 框架性能測試 2、.net core 執行過程 3、中間件執行過程 4、AOP切麵 5、整體框架結構與資料庫表UML 一、創建第一個Core 1、SDK 安裝 2、新建項目 2、新建項目(3.0SDK) 3、項目整體結構分析 二、重要文件說明 1、Progra ...
  • //接收的為空時,則表示客戶端下線,跳出迴圈 if (r == 0) { break; }; string str = Encoding.UTF8.GetString(buffer, 0, r); //RemoteEndPoint:可以得到遠程客戶端的IP和埠號。 ShowMsg(socketSe... ...
  • static void CopyFiles() { string sourceDir = @"D:\C\ll"; string destDir = @"D:\LL"; if (!Directory.Exists(destDir)) { Directo... ...
  • //加密 public static string GDEncode(string data, string Key) { Key = "12345678"; byte[] byKey = System.Text.ASCIIEncoding.ASCII.GetBytes(Key); byte[] b ...
  • 當我們的系統時間不正常,比如設置一個日期-1999年9月9日,會引發證書問題。 系統時間不正常-IE有概率能訪問 觸發NavigateError事件,異常代碼INET_E_INVALID_CERTIFICATE -- 這是一個必要不充分條件,系統時間不正常時IE有相關證書異常,更新時間能解決此類異常 ...
  • asp.net 使用 Application 限制單一登錄 原理:用戶登錄後系統會分配一個與用戶唯一對應的SessionID,將當前用戶ID與其SessionID對應保存在Application中,一旦該用戶在其他地方重覆登錄則Application中保存的SessionID就會被更新,導致當前se ...
  • 場景 使用Visual Studio 開發Winform程式,使用SVN進行項目版本管理。 在添加引用時,會出現在A電腦中添加了絕對路徑的引用,在B電腦中就會出現找不到 並且將此引用標識為?的狀態。 註: 博客主頁: https://blog.csdn.net/badao_liumang_qizhi ...
  • asp.net 使用NPOI讀取excel文件內容 NPOI下載地址:NPOI public class ExcelHelper { /// <summary> /// 讀取Excel文件數據到DataSet,一個Sheet對應一個DataTable /// </summary> /// <para ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...