C#中關於各種匯出的方法介紹

來源:互聯網
上載者:User
本篇文章主要介紹了C# 各種匯出方法的相關知識,具有很好的參考價值。下面跟著小編一起來看下吧

第一種:使用 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();        }      }    }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();    }

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

第二種:使用 Aspose.Cells.dll

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


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)      {      }    }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();    }

第二種方法效能還不錯,而且操作也不複雜,可以設定匯出時檔案儲存的路徑,還可以儲存為流輸出到瀏覽器下載。

第三種: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 的設計。它在唯讀資料庫中”,那就去掉這個,問題解決。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.