dategridview中的数据保存到excel

这个方法需要引用Microsoft.Office.Interop.Excel引用(手动添加) 

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
#region DataGridView导出到Excel,有一定的判断性
     /// <summary>  
     ///方法,导出DataGridView中的数据到Excel文件  
     /// </summary>  
     /// <param name= "dgv"> DataGridView </param>  
     public static void DataGridViewToExcel(DataGridView dgv)
     {
 
         #region   验证可操作性
 
         //申明保存对话框  
         SaveFileDialog dlg = new SaveFileDialog();
         //默然文件后缀
         dlg.DefaultExt = "xls ";
         //文件后缀列表  
         dlg.Filter = "EXCEL文件(*.XLS)|*.xls ";
         //默然路径是系统当前路径  
         dlg.InitialDirectory = Directory.GetCurrentDirectory();
         //打开保存对话框  
         if (dlg.ShowDialog() == DialogResult.Cancel) return;
         //返回文件路径  
         string fileNameString = dlg.FileName;
         //验证strFileName是否为空或值无效  
         if (fileNameString.Trim() == " ")
         { return; }
         //定义表格内数据的行数和列数  
         int rowscount = dgv.Rows.Count;
         int colscount = dgv.Columns.Count;
         //行数必须大于0  
         if (rowscount <= 0)
         {
             MessageBox.Show("没有数据可供保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
             return;
         }
 
         //列数必须大于0  
         if (colscount <= 0)
         {
             MessageBox.Show("没有数据可供保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
             return;
         }
 
         //行数不可以大于65536  
         if (rowscount > 65536)
         {
             MessageBox.Show("数据记录数太多(最多不能超过65536条),不能保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
             return;
         }
 
         //列数不可以大于255  
         if (colscount > 255)
         {
             MessageBox.Show("数据记录行数太多,不能保存 ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
             return;
         }
 
         //验证以fileNameString命名的文件是否存在,如果存在删除它  
         FileInfo file = new FileInfo(fileNameString);
         if (file.Exists)
         {
             try
             {
                 file.Delete();
             }
             catch (Exception error)
             {
                 MessageBox.Show(error.Message, "删除失败 ", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                 return;
             }
         }
         #endregion
         Microsoft.Office.Interop.Excel.Application objExcel = null;
         Microsoft.Office.Interop.Excel.Workbook objWorkbook = null;
         Microsoft.Office.Interop.Excel.Worksheet objsheet = null;
         try
         {
             //申明对象  
             objExcel = new Microsoft.Office.Interop.Excel.Application();
             objWorkbook = objExcel.Workbooks.Add(Missing.Value);
             objsheet = (Microsoft.Office.Interop.Excel.Worksheet)objWorkbook.ActiveSheet;
             //设置EXCEL不可见  
             objExcel.Visible = false;
 
             //向Excel中写入表格的表头  
             int displayColumnsCount = 1;
             for (int i = 0; i <= dgv.ColumnCount - 1; i++)
             {
                 if (dgv.Columns[i].Visible == true)
                 {
                     objExcel.Cells[1, displayColumnsCount] = dgv.Columns[i].HeaderText.Trim();
                     displayColumnsCount++;
                 }
             }
             //设置进度条  
             //tempProgressBar.Refresh();  
             //tempProgressBar.Visible   =   true;  
             //tempProgressBar.Minimum=1;  
             //tempProgressBar.Maximum=dgv.RowCount;  
             //tempProgressBar.Step=1;  
             //向Excel中逐行逐列写入表格中的数据  
             for (int row = 0; row <= dgv.RowCount - 1; row++)
             {
                 //tempProgressBar.PerformStep();  
 
                 displayColumnsCount = 1;
                 for (int col = 0; col < colscount; col++)
                 {
                     if (dgv.Columns[col].Visible == true)
                     {
                         try
                         {
                             objExcel.Cells[row + 2, displayColumnsCount] = dgv.Rows[row].Cells[col].Value.ToString().Trim();
                             displayColumnsCount++;
                         }
                         catch (Exception)
                         {
 
                         }
 
                     }
                 }
             }
             //隐藏进度条  
             //tempProgressBar.Visible   =   false;  
             //保存文件  
             objWorkbook.SaveAs(fileNameString, Missing.Value, Missing.Value, Missing.Value, Missing.Value,
                     Missing.Value, Microsoft.Office.Interop.Excel.XlSaveAsAccessMode.xlShared, Missing.Value, Missing.Value, Missing.Value,
                     Missing.Value, Missing.Value);
         }
         catch (Exception error)
         {
             MessageBox.Show(error.Message, "警告 ", MessageBoxButtons.OK, MessageBoxIcon.Warning);
             return;
         }
         finally
         {
             //关闭Excel应用  
             if (objWorkbook != null) objWorkbook.Close(Missing.Value, Missing.Value, Missing.Value);
             if (objExcel.Workbooks != null) objExcel.Workbooks.Close();
             if (objExcel != null) objExcel.Quit();
 
             objsheet = null;
             objWorkbook = null;
             objExcel = null;
         }
         MessageBox.Show(fileNameString + "\n\n导出完毕! ", "提示 ", MessageBoxButtons.OK, MessageBoxIcon.Information);
 
     }
 
     #endregion
posted @   qianlifeng  阅读(1200)  评论(5编辑  收藏  举报
编辑推荐:
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
阅读排行:
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· .NET周刊【3月第1期 2025-03-02】
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
点击右上角即可分享
微信分享提示