91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C#讀寫Excel的方法有幾種

發布時間:2021-10-15 18:00:08 來源:億速云 閱讀:135 作者:柒染 欄目:編程語言

本篇文章給大家分享的是有關C#讀寫Excel的方法有幾種,小編覺得挺實用的,因此分享給大家學習,希望大家閱讀完這篇文章后可以有所收獲,話不多說,跟著小編一起來看看吧。

1 使用Office自帶的庫

前提是本機須安裝office才能運行,且不同的office版本之間可能會有兼容問題,從Nuget下載 Microsoft.Office.Interop.Excel

讀寫代碼如下:

using Microsoft.Office.Interop.Excel;using Excel = Microsoft.Office.Interop.Excel;    private void btn_Office_Click(object sender, EventArgs e)    {      string importExcelPath = "E:\\import.xlsx";      string exportExcelPath = "E:\\export.xlsx";      //創建      Excel.Application xlApp = new Excel.Application();      xlApp.DisplayAlerts = false;      xlApp.Visible = false;      xlApp.ScreenUpdating = false;      //打開Excel      Excel.Workbook xlsWorkBook = xlApp.Workbooks.Open(importExcelPath, System.Type.Missing, System.Type.Missing, System.Type.Missing,      System.Type.Missing, System.Type.Missing, System.Type.Missing, System.Type.Missing, System.Type.Missing, System.Type.Missing, System.Type.Missing,      System.Type.Missing, System.Type.Missing, System.Type.Missing, System.Type.Missing);      //處理數據過程,更多操作方法自行百度      Excel.Worksheet sheet = xlsWorkBook.Worksheets[1];//工作薄從1開始,不是0      sheet.Cells[1, 1] = "test";      //另存      xlsWorkBook.SaveAs(exportExcelPath, Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing, XlSaveAsAccessMode.xlNoChange,        Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing);      //關閉Excel進程      ClosePro(xlApp, xlsWorkBook);    }    public void ClosePro(Excel.Application xlApp, Excel.Workbook xlsWorkBook)    {      if (xlsWorkBook != null)        xlsWorkBook.Close(true, Type.Missing, Type.Missing);      xlApp.Quit();      // 安全回收進程      System.GC.GetGeneration(xlApp);      IntPtr t = new IntPtr(xlApp.Hwnd);  //獲取句柄      int k = 0;      GetWindowThreadProcessId(t, out k);  //獲取進程唯一標志      System.Diagnostics.Process p = System.Diagnostics.Process.GetProcessById(k);      p.Kill();   //關閉進程    }

2. 使用NPOI  

地址:https://github.com/tonyqus/npoi

在不安裝office的時候也是可以讀寫的,速度很快,從Nuget下載 NPOI

讀寫代碼如下:

using System.IO;using NPOI;using NPOI.SS.UserModel;    private void btn_NPOI_Click(object sender, EventArgs e)    {      string importExcelPath = "E:\\import.xlsx";      string exportExcelPath = "E:\\export.xlsx";      IWorkbook workbook = WorkbookFactory.Create(importExcelPath);      ISheet sheet = workbook.GetSheetAt(0);//獲取第一個工作薄      IRow row = (IRow)sheet.GetRow(0);//獲取第一行      //設置第一行第一列值,更多方法請參考源官方Demo      row.CreateCell(0).SetCellValue("test");//設置第一行第一列值      //導出excel      FileStream fs = new FileStream(exportExcelPath, FileMode.Create, FileAccess.ReadWrite);      workbook.Write(fs);      fs.Close();    }

3. 使用ClosedXml  

地址:https://github.com/ClosedXML/ClosedXML

從Nuget下載ClosedXml

讀寫代碼如下:

using ClosedXML;using ClosedXML.Excel;    private void btn_ClosedXML_Click(object sender, EventArgs e)    {      string importExcelPath = "E:\\import.xlsx";      string exportExcelPath = "E:\\export.xlsx";      var workbook = new XLWorkbook(importExcelPath);      IXLWorksheet sheet = workbook.Worksheet(1);//這個庫也是從1開始      //設置第一行第一列值,更多方法請參考官方Demo      sheet.Cell(1, 1).Value = "test";//該方法也是從1開始,非0      workbook.SaveAs(exportExcelPath);    }

4. 使用 spire.xls  

地址:https://www.e-iceblue.com/Introduce/free-xls-component.html

spire分免費和收費,無特殊需求用免費即可

從Nuget下載Free Spire.xls For .NET

讀寫代碼如下:

using Spire.Xls;    private void btnSpire_Click(object sender, EventArgs e)    {      string importExcelPath = "E:\\import.xlsx";      string exportExcelPath = "E:\\export.xlsx";      Spire.Xls.Workbook workbook = new Spire.Xls.Workbook();      workbook.LoadFromFile(importExcelPath);      //處理Excel數據,更多請參考官方Demo      Spire.Xls.Worksheet sheet = workbook.Worksheets[0];      sheet.Range[1,1].Text = "test";//該方法也是從1開始,非0      workbook.SaveToFile(exportExcelPath);    }

5. EPPLUS  

地址:https://github.com/pruiz/EPPlus/tree/master/EPPlus

沒用過這個,暫時就不做介紹了

以上就是C#讀寫Excel的方法有幾種,小編相信有部分知識點可能是我們日常工作會見到或用到的。希望你能通過這篇文章學到更多知識。更多詳情敬請關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

顺昌县| 饶河县| 民和| 恩平市| 江口县| 施秉县| 北碚区| 沈丘县| 汶上县| 门头沟区| 张掖市| 孟州市| 调兵山市| 西吉县| 洛阳市| 聂荣县| 农安县| 子长县| 南皮县| 建阳市| 襄城县| 大新县| 台中市| 灵武市| 格尔木市| 瓮安县| 旺苍县| 葵青区| 女性| 临泽县| 平果县| 连平县| 大余县| 瑞安市| 蓝田县| 湘潭市| 万全县| 水富县| 额尔古纳市| 广河县| 海淀区|