C#_調用封裝的一個類實現匯出Excel表格的功能

來源:互聯網
上載者:User

前言

在大多數表單中都有匯出Excel表格的功能,如果封裝封裝一個類,使用的時候直接調用這個類不是更方便?,這樣還減少了代碼的重複性,何樂而不為?

操作

首先添加引用,在com中選中microsoft office 16.0 object library,和microsoft Excel 16.0 object library。

添加命名空間:

using Microsoft.Office.Interop.Excel;//匯出Excelusing Microsoft.Office.Core;using System.Data.OleDb;using System.Windows.Forms;

建立一個類並命名為outputExcel,代碼如下:

public  class outputExcel    {        //匯出excel        public void RExcel(string name, DataGridView dgv)        {            //總可見行列數            int rowCount = dgv.Rows.GetRowCount(DataGridViewElementStates.Visible);            int colCount = dgv.Columns.GetColumnCount(DataGridViewElementStates.Visible);            //如果沒有資料            if (dgv.Rows.Count == 0 || rowCount == 0)            {                MessageBox.Show("表中沒有資料", "提示");            }            else            {                //建立檔案的路徑                SaveFileDialog save = new SaveFileDialog();                save.Filter = "excel files(*.xlsx)|*.xlsx";                save.Title = "請選擇要匯出資料的位置";                save.FileName = name + DateTime.Now.ToLongDateString();                if (save.ShowDialog() == DialogResult.OK)                {                    string fileName = save.FileName;                    //建立excel對象                    Microsoft.Office.Interop.Excel.Application excel = new Microsoft.Office.Interop.Excel.Application();                    if (excel == null)                    {                        MessageBox.Show("Excel無法啟動", "提示");                        return;                    }                    //建立工作薄                    Microsoft.Office.Interop.Excel.Workbook excelBook = excel.Workbooks.Add(true);                    Microsoft.Office.Interop.Excel.Worksheet excelSheet = (Microsoft.Office.Interop.Excel.Worksheet)excelBook.Worksheets[1];                    //產生欄位名                    int k = 0;                    for (int i = 0; i < dgv.ColumnCount; i++)                    {                        if (dgv.Columns[i].Visible)//不匯出隱藏列                        {                            excel.Cells[1, k + 1] = dgv.Columns[i].HeaderText;                            k++;                        }                    }                    //填充資料                    for (int i = 0; i < dgv.RowCount; i++)                    {                        k = 0;                        for (int j = 0; j < dgv.ColumnCount; j++)                        {                            if (dgv.Columns[j].Visible)//不匯出隱藏的列                            {                                if (dgv[j, i].ValueType == typeof(string))                                {                                    excel.Cells[i + 2, k + 1] = "" + dgv[j, i].Value.ToString();                                }                                else                                {                                    excel.Cells[i + 2, k + 1] = dgv[j, i].Value.ToString();                                }                            }                            k++;                        }                    }                    try                    {                        excelBook.Saved = true;                        excelBook.SaveCopyAs(fileName);                        MessageBox.Show("匯出成功!");                    }                    catch                    {                        MessageBox.Show("匯出檔案失敗,檔案可能正在使用中", "提示");                    }                }            }        }    }

當表單需要使用此功能時,需要寫上以下代碼即可:

private void btnoutExcel_Click(object sender, EventArgs e)        {            outputExcel form1 = new outputExcel();            form1.RExcel("", dataGridView1);        }

相關文章:

【c#教程】C# 資料類型

mysql Connector C/C++ 多線程封裝

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.