C# 導出 Excel 的各種方法總結

来源:http://www.cnblogs.com/Brambling/archive/2017/05/15/6854731.html
-Advertisement-
Play Games

第一種:使用 Microsoft.Office.Interop.Excel.dll 首先需要安裝 office 的 excel,然後再找到 Microsoft.Office.Interop.Excel.dll 組件,添加到引用。 public void ExportExcel(DataTable d ...


第一種:使用 Microsoft.Office.Interop.Excel.dll

首先需要安裝 office 的 excel,然後再找到 Microsoft.Office.Interop.Excel.dll 組件,添加到引用。

public void ExportExcel(DataTable dt)
        {
            if (dt != null)
            {
                Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();

                if (excel == null)
                {
                    return;
                }

                //設置為不可見,操作在後臺執行,為 true 的話會打開 Excel
                excel.Visible = false;

                //打開時設置為全屏顯式
                //excel.DisplayFullScreen = true;

                //初始化工作簿
                Microsoft.Office.Interop.Excel.Workbooks workbooks = excel.Workbooks;

                //新增加一個工作簿,Add()方法也可以直接傳入參數 true
                Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
                //同樣是新增一個工作簿,但是會彈出保存對話框
                //Microsoft.Office.Interop.Excel.Workbook workbook = excel.Application.Workbooks.Add(true);

                //新增加一個 Excel 表(sheet)
                Microsoft.Office.Interop.Excel.Worksheet worksheet = (Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1];

                //設置表的名稱
                worksheet.Name = dt.TableName;
                try
                {
                    //創建一個單元格
                    Microsoft.Office.Interop.Excel.Range range;

                    int rowIndex = 1;       //行的起始下標為 1
                    int colIndex = 1;       //列的起始下標為 1

                    //設置列名
                    for (int i = 0; i < dt.Columns.Count; i++)
                    {
                        //設置第一行,即列名
                        worksheet.Cells[rowIndex, colIndex + i] = dt.Columns[i].ColumnName;

                        //獲取第一行的每個單元格
                        range = worksheet.Cells[rowIndex, colIndex + i];

                        //設置單元格的內部顏色
                        range.Interior.ColorIndex = 33;

                        //字體加粗
                        range.Font.Bold = true;

                        //設置為黑色
                        range.Font.Color = 0;

                        //設置為宋體
                        range.Font.Name = "Arial";

                        //設置字體大小
                        range.Font.Size = 12;

                        //水平居中
                        range.HorizontalAlignment = Microsoft.Office.Interop.Excel.XlHAlign.xlHAlignCenter;

                        //垂直居中
                        range.VerticalAlignment = Microsoft.Office.Interop.Excel.XlVAlign.xlVAlignCenter;
                    }

                    //跳過第一行,第一行寫入了列名
                    rowIndex++;

                    //寫入數據
                    for (int i = 0; i < dt.Rows.Count; i++)
                    {
                        for (int j = 0; j < dt.Columns.Count; j++)
                        {
                            worksheet.Cells[rowIndex + i, colIndex + j] = dt.Rows[i][j].ToString();
                        }
                    }

                    //設置所有列寬為自動列寬
                    //worksheet.Columns.AutoFit();

                    //設置所有單元格列寬為自動列寬
                    worksheet.Cells.Columns.AutoFit();
                    //worksheet.Cells.EntireColumn.AutoFit();

                    //是否提示,如果想刪除某個sheet頁,首先要將此項設為fasle。
                    excel.DisplayAlerts = false;

                    //保存寫入的數據,這裡還沒有保存到磁碟
                    workbook.Saved = true;

                    //設置導出文件路徑
                    string path = HttpContext.Current.Server.MapPath("Export/");

                    //設置新建文件路徑及名稱
                    string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";

                    //創建文件
                    FileStream file = new FileStream(savePath, FileMode.CreateNew);

                    //關閉釋放流,不然沒辦法寫入數據
                    file.Close();
                    file.Dispose();

                    //保存到指定的路徑
                    workbook.SaveCopyAs(savePath);

                    //還可以加入以下方法輸出到瀏覽器下載
                    FileInfo fileInfo = new FileInfo(savePath);
                    OutputClient(fileInfo);
                }
                catch(Exception ex)
                {

                }
                finally
                {
                    workbook.Close(false, Type.Missing, Type.Missing);
                    workbooks.Close();

                    //關閉退出
                    excel.Quit();

                    //釋放 COM 對象
                    Marshal.ReleaseComObject(worksheet);
                    Marshal.ReleaseComObject(workbook);
                    Marshal.ReleaseComObject(workbooks);
                    Marshal.ReleaseComObject(excel);

                    worksheet = null;
                    workbook = null;
                    workbooks = null;
                    excel = null;

                    GC.Collect();
                }
            }
        }
View Code
public void OutputClient(FileInfo file)
        {
            HttpContext.Current.Response.Buffer = true;

            HttpContext.Current.Response.Clear();
            HttpContext.Current.Response.ClearHeaders();
            HttpContext.Current.Response.ClearContent();

            HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";

            //導出到 .xlsx 格式不能用時,可以試試這個
            //HttpContext.Current.Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";

            HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xlsx", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));

            HttpContext.Current.Response.Charset = "GB2312";
            HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding("GB2312");

            HttpContext.Current.Response.AddHeader("Content-Length", file.Length.ToString());

            HttpContext.Current.Response.WriteFile(file.FullName);
            HttpContext.Current.Response.Flush();

            HttpContext.Current.Response.Close();
        }
View Code

第一種方法性能實在是不敢恭維,而且局限性太多。首先必須要安裝 office(如果電腦上面沒有的話),而且導出時需要指定文件保存的路徑。也可以輸出到瀏覽器下載,當然前提是已經保存寫入數據。

 

第二種:使用 Aspose.Cells.dll

這個 Aspose.Cells 是 Aspose 公司推出的導出 Excel 的控制項,不依賴 Office,商業軟體,收費的。

可以參考:http://www.cnblogs.com/xiaofengfeng/archive/2012/09/27/2706211.html#top

public void ExportExcel(DataTable dt)
        {
            try
            {
                //獲取指定虛擬路徑的物理路徑
                string path = HttpContext.Current.Server.MapPath("DLL/") + "License.lic";

                //讀取 License 文件
                Stream stream = (Stream)File.OpenRead(path);

                //註冊 License
                Aspose.Cells.License li = new Aspose.Cells.License();
                li.SetLicense(stream);

                //創建一個工作簿
                Aspose.Cells.Workbook workbook = new Aspose.Cells.Workbook();

                //創建一個 sheet 表
                Aspose.Cells.Worksheet worksheet = workbook.Worksheets[0];

                //設置 sheet 表名稱
                worksheet.Name = dt.TableName;

                Aspose.Cells.Cell cell;

                int rowIndex = 0;   //行的起始下標為 0
                int colIndex = 0;   //列的起始下標為 0

                //設置列名
                for (int i = 0; i < dt.Columns.Count; i++)
                {
                    //獲取第一行的每個單元格
                    cell = worksheet.Cells[rowIndex, colIndex + i];

                    //設置列名
                    cell.PutValue(dt.Columns[i].ColumnName);

                    //設置字體
                    cell.Style.Font.Name = "Arial";

                    //設置字體加粗
                    cell.Style.Font.IsBold = true;

                    //設置字體大小
                    cell.Style.Font.Size = 12;

                    //設置字體顏色
                    cell.Style.Font.Color = System.Drawing.Color.Black;

                    //設置背景色
                    cell.Style.BackgroundColor = System.Drawing.Color.LightGreen;
                }

                //跳過第一行,第一行寫入了列名
                rowIndex++;

                //寫入數據
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    for (int j = 0; j < dt.Columns.Count; j++)
                    {
                        cell = worksheet.Cells[rowIndex + i, colIndex + j];

                        cell.PutValue(dt.Rows[i][j]);
                    }
                }

                //自動列寬
                worksheet.AutoFitColumns();

                //設置導出文件路徑
                path = HttpContext.Current.Server.MapPath("Export/");

                //設置新建文件路徑及名稱
                string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";

                //創建文件
                FileStream file = new FileStream(savePath, FileMode.CreateNew);

                //關閉釋放流,不然沒辦法寫入數據
                file.Close();
                file.Dispose();

                //保存至指定路徑
                workbook.Save(savePath);


                //或者使用下麵的方法,輸出到瀏覽器下載。
                //byte[] bytes = workbook.SaveToStream().ToArray();
                //OutputClient(bytes);

                worksheet = null;
                workbook = null;
            }
            catch(Exception ex)
            {

            }
        }
View Code
public void OutputClient(byte[] bytes)
        {
            HttpContext.Current.Response.Buffer = true;

            HttpContext.Current.Response.Clear();
            HttpContext.Current.Response.ClearHeaders();
            HttpContext.Current.Response.ClearContent();

            HttpContext.Current.Response.ContentType = "application/vnd.ms-excel";
            HttpContext.Current.Response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));

            HttpContext.Current.Response.Charset = "GB2312";
            HttpContext.Current.Response.ContentEncoding = Encoding.GetEncoding("GB2312");

            HttpContext.Current.Response.BinaryWrite(bytes);
            HttpContext.Current.Response.Flush();

            HttpContext.Current.Response.Close();
        }
View Code

第二種方法性能還不錯,而且操作也不複雜,可以設置導出時文件保存的路徑,還可以保存為流輸出到瀏覽器下載。

 

第三種:Microsoft.Jet.OLEDB

這種方法操作 Excel 類似於操作資料庫。下麵先介紹一下連接字元串:

// Excel 2003 版本連接字元串
string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:/xxx.xls;Extended Properties='Excel 8.0;HDR=Yes;IMEX=2;'";

// Excel 2007 以上版本連接字元串
string strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:/xxx.xlsx;Extended Properties='Excel 12.0;HDR=Yes;IMEX=2;'";

Provider:驅動程式名稱

Data Source:指定 Excel 文件的路徑

Extended Properties:Excel 8.0 針對 Excel 2000 及以上版本;Excel 12.0 針對 Excel 2007 及以上版本。

HDR:Yes 表示第一行包含列名,在計算行數時就不包含第一行。NO 則完全相反。

IMEX:0 寫入模式;1 讀取模式;2 讀寫模式。如果報錯為“不能修改表 sheet1 的設計。它在只讀資料庫中”,那就去掉這個,問題解決。

public void ExportExcel(DataTable dt)
        {
            OleDbConnection conn = null;
            OleDbCommand cmd = null;

            Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();

            Microsoft.Office.Interop.Excel.Workbooks workbooks = excel.Workbooks;

            Microsoft.Office.Interop.Excel.Workbook workbook = workbooks.Add(true);

            try
            {
                //設置區域為當前線程的區域
                dt.Locale = System.Threading.Thread.CurrentThread.CurrentCulture;

                //設置導出文件路徑
                string path = HttpContext.Current.Server.MapPath("Export/");

                //設置新建文件路徑及名稱
                string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xlsx";

                //創建文件
                FileStream file = new FileStream(savePath, FileMode.CreateNew);

                //關閉釋放流,不然沒辦法寫入數據
                file.Close();
                file.Dispose();

                //由於使用流創建的 excel 文件不能被正常識別,所以只能使用這種方式另存為一下。
                workbook.SaveCopyAs(savePath);


                // Excel 2003 版本連接字元串
                //string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source='" + savePath + "';Extended Properties='Excel 8.0;HDR=Yes;'";

                // Excel 2007 以上版本連接字元串
                string strConn = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='"+ savePath + "';Extended Properties='Excel 12.0;HDR=Yes;'";

                //創建連接對象
                conn = new OleDbConnection(strConn);
                //打開連接
                conn.Open();

                //創建命令對象
                cmd = conn.CreateCommand();

                //獲取 excel 所有的數據表。
                //new object[] { null, null, null, "Table" }指定返回的架構信息:參數介紹
                //第一個參數指定目錄
                //第二個參數指定所有者
                //第三個參數指定表名
                //第四個參數指定表類型
                DataTable dtSheetName = conn.GetOleDbSchemaTable(OleDbSchemaGuid.Tables, new object[] { null, null, null, "Table" });

                //因為後面創建的表都會在最後面,所以本想刪除掉前面的表,結果發現做不到,只能清空數據。
                for (int i = 0; i < dtSheetName.Rows.Count; i++)
                {
                    cmd.CommandText = "drop table [" + dtSheetName.Rows[i]["TABLE_NAME"].ToString() + "]";
                    cmd.ExecuteNonQuery();
                }

                //添加一個表,即 Excel 中 sheet 表
                cmd.CommandText = "create table " + dt.TableName + " ([S_Id] INT,[S_StuNo] VarChar,[S_Name] VarChar,[S_Sex] VarChar,[S_Height] VarChar,[S_BirthDate] VarChar,[C_S_Id] INT)";
                cmd.ExecuteNonQuery();

                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    string values = "";

                    for (int j = 0; j < dt.Columns.Count; j++)
                    {
                        values += "'" + dt.Rows[i][j].ToString() + "',";
                    }

                    //判斷最後一個字元是否為逗號,如果是就截取掉
                    if (values.LastIndexOf(',') == values.Length - 1)
                    {
                        values = values.Substring(0, values.Length - 1);
                    }

                    //寫入數據
                    cmd.CommandText = "insert into " + dt.TableName + " (S_Id,S_StuNo,S_Name,S_Sex,S_Height,S_BirthDate,C_S_Id) values (" + values + ")";
                    cmd.ExecuteNonQuery();
                }

                conn.Close();
                conn.Dispose();
                cmd.Dispose();

                //加入下麵的方法,把保存的 Excel 文件輸出到瀏覽器下載。需要先關閉連接。
                FileInfo fileInfo = new FileInfo(savePath);
                OutputClient(fileInfo);
            }
            catch (Exception ex)
            {

            }
            finally
            {
                workbook.Close(false, Type.Missing, Type.Missing);
                workbooks.Close();
                excel.Quit();

                Marshal.ReleaseComObject(workbook);
                Marshal.ReleaseComObject(workbooks);
                Marshal.ReleaseComObject(excel);

                workbook = null;
                workbooks = null;
                excel = null;

                GC.Collect();
            }
        }
View Code
public void OutputClient(FileInfo file)
        {
            HttpResponse response = HttpContext.Current.Response;

            response.Buffer = true;

            response.Clear();
            response.ClearHeaders();
            response.ClearContent();

            response.ContentType = "application/vnd.ms-excel";

            //導出到 .xlsx 格式不能用時,可以試試這個
            //HttpContext.Current.Response.ContentType = "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet";

            response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xlsx", DateTime.Now.ToString("yyyy-MM-dd-HH-mm")));

            response.Charset = "GB2312";
            response.ContentEncoding = Encoding.GetEncoding("GB2312");

            response.AddHeader("Content-Length", file.Length.ToString());

            response.WriteFile(file.FullName);
            response.Flush();

            response.Close();
        }
View Code

這種方法需要指定一個已經存在的 Excel 文件作為寫入數據的模板,不然的話就得使用流創建一個新的 Excel 文件,但是這樣是沒法識別的,那就需要用到 Microsoft.Office.Interop.Excel.dll 裡面的 Microsoft.Office.Interop.Excel.Workbook.SaveCopyAs() 方法另存為一下,這樣性能也就更差了。

使用操作命令創建的表都是在最後面的,前面的也沒法刪除(我是沒有找到方法),當然也可以不再創建,直接寫入數據也可以。

 

第四種:NPOI

NPOI 是 POI 項目的.NET版本,它不使用 Office COM 組件,不需要安裝 Microsoft Office,目前只支持 Office 97-2003 的文件格式。

NPOI 是免費開源的,操作也比較方便,下載地址:http://npoi.codeplex.com/

public void ExportExcel(DataTable dt)
        {
            try
            {
                //創建一個工作簿
                IWorkbook workbook = new HSSFWorkbook();

                //創建一個 sheet 表
                ISheet sheet = workbook.CreateSheet(dt.TableName);

                //創建一行
                IRow rowH = sheet.CreateRow(0);

                //創建一個單元格
                ICell cell = null;

                //創建單元格樣式
                ICellStyle cellStyle = workbook.CreateCellStyle();

                //創建格式
                IDataFormat dataFormat = workbook.CreateDataFormat();

                //設置為文本格式,也可以為 text,即 dataFormat.GetFormat("text");
                cellStyle.DataFormat = dataFormat.GetFormat("@");

                //設置列名
                foreach (DataColumn col in dt.Columns)
                {
                    //創建單元格並設置單元格內容
                    rowH.CreateCell(col.Ordinal).SetCellValue(col.Caption);

                    //設置單元格格式
                    rowH.Cells[col.Ordinal].CellStyle = cellStyle;
                }

                //寫入數據
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    //跳過第一行,第一行為列名
                    IRow row = sheet.CreateRow(i + 1);

                    for (int j = 0; j < dt.Columns.Count; j++)
                    {
                        cell = row.CreateCell(j);
                        cell.SetCellValue(dt.Rows[i][j].ToString());
                        cell.CellStyle = cellStyle;
                    }
                }

                //設置導出文件路徑
                string path = HttpContext.Current.Server.MapPath("Export/");

                //設置新建文件路徑及名稱
                string savePath = path + DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss") + ".xls";

                //創建文件
                FileStream file = new FileStream(savePath, FileMode.CreateNew,FileAccess.Write);

                //創建一個 IO 流
                MemoryStream ms = new MemoryStream();

                //寫入到流
                workbook.Write(ms);

                //轉換為位元組數組
                byte[] bytes = ms.ToArray();

                file.Write(bytes, 0, bytes.Length);
                file.Flush();

                //還可以調用下麵的方法,把流輸出到瀏覽器下載
                OutputClient(bytes);

                //釋放資源
                bytes = null;

                ms.Close();
                ms.Dispose();

                file.Close();
                file.Dispose();

                workbook.Close();
                sheet = null;
                workbook = null;
            }
            catch(Exception ex)
            {

            }
        }
View Code
public void OutputClient(byte[] bytes)
        {
            HttpResponse response = HttpContext.Current.Response;

            response.Buffer = true;

            response.Clear();
            response.ClearHeaders();
            response.ClearContent();

            response.ContentType = "application/vnd.ms-excel";
            response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}.xls", DateTime.Now.ToString("yyyy-MM-dd-HH-mm-ss")));

            response.Charset = "GB2312";
            response.ContentEncoding = Encoding.GetEncoding("GB2312");

            response.BinaryWrite(bytes);
            response.Flush();

            response.Close();
        }
View Code

由於此方法目前只支持 office 2003 及以下版本,所以不能導出 .xlsx 格式的 Excel 文件。不過這種方法性能不錯,而且操作方便。

 


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

-Advertisement-
Play Games
更多相關文章
  • 下載並引入兩個dll文件 NPinyin.dll 和 ChnCharInfo.dll 其實這兩個dll 任何一個都可以實現漢字轉拼音,然而 NPinyin.dll 收錄的漢字並不全,但是很人性化,能識別一些常用的漢字。ChnCharInfo.dll 是微軟的很全但是不人性化。另外本套代碼外有一個自己 ...
  • DotBPE.RPC是一款基於dotnet core編寫的RPC框架,而它的爸爸DotBPE,目標是實現一個開箱即用的微服務框架,但是它還差點意思,還僅僅在構思和嘗試的階段。但不管怎麼說RPC是微服務的基礎,先來講講RPC的實現吧。DotBPE.RPC底層通信預設實現基於[DotNetty](htt... ...
  • 工廠方法模式(Factory Method) 工廠方法屬於創建型模式中的一種,用於在不指定待創建對象的具體類的情況下創建對象,隱藏了對象創建的複雜性。客戶面向介面或抽象類進行編碼,而Factory類負責具體類的創建。通常,Factory類有一個返回介面或抽象類的靜態方法,客戶提供某種信息,然後由根據 ...
  • 主要介紹ASP.NETMVC 應用提速的六種方法,因為沒有人喜歡等待,所以介紹幾種常用的優化方法。 大家可能會遇到排隊等待,遇到紅燈要等待,開個網頁要等待,等等等。 理所當然,沒有人喜歡等待網頁慢吞吞地載入,尤其是在移動端訪問網站時。其實,Web 開發者敏感的神經決定了我們等待與否。 現在,快速響應 ...
  • ...
  • 本文原創,轉載請註明出處:http://www.cnblogs.com/AdvancePikachu/p/6856374.html 首先,總結了下最近工作中關於攝像機漫游的功能, 腳本如下: 1 Transform _Camera; 2 public LayerMask mask; 3 4 publ ...
  • 之前為了便於人事部門招聘登錄網站更簡潔高效,免去每天頻繁輸網址、用戶名、密碼等相關登錄信息,特基於winform+HttpWebRequest實現模擬請求登錄,最終達到一鍵登錄到招聘網站後臺的效果。 要實現一鍵登錄到各大人才招聘網站就必需先瞭解網站的登錄步驟即原理,然後通過代碼一步步模擬實現即可。 ...
  • 首先點擊代碼模板右鍵新建一個模板 把這串代碼粘貼保存。 使用方法: 1.先點擊我們剛纔新建的模板 2.點擊生成代碼按鈕 生成的代碼是這樣子的 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...