DataGridView导出到Excel的三个方法
- #region DataGridView数据显示到Excel
- /// <summary>
- /// 打开Excel并将DataGridView控件中数据导出到Excel
- /// </summary>
- /// <param name="dgv">DataGridView对象 </param>
- /// <param name="isShowExcle">是否显示Excel界面 </param>
- /// <remarks>
- /// add com "Microsoft Excel 11.0 Object Library"
- /// using Excel=Microsoft.Office.Interop.Excel;
- /// </remarks>
- /// <returns> </returns>
- public bool DataGridviewShowToExcel(DataGridView dgv, bool isShowExcle)
- {
- if (dgv.Rows.Count == 0)
- return false;
- //建立Excel对象
- Excel.Application excel = new Excel.Application();
- excel.Application.Workbooks.Add(true);
- excel.Visible = isShowExcle;
- //生成字段名称
- for (int i = 0; i < dgv.ColumnCount; i++)
- {
- excel.Cells[1, i + 1] = dgv.Columns[i].HeaderText;
- }
- //填充数据
- for (int i = 0; i < dgv.RowCount - 1; i++)
- {
- for (int j = 0; j < dgv.ColumnCount; j++)
- {
- if (dgv[j, i].ValueType == typeof(string))
- {
- excel.Cells[i + 2, j + 1] = "'" + dgv[j, i].Value.ToString();
- }
- else
- {
- excel.Cells[i + 2, j + 1] = dgv[j, i].Value.ToString();
- }
- }
- }
- return true;
- }
- #endregion
- #region DateGridView导出到csv格式的Excel
- /// <summary>
- /// 常用方法,列之间加/t,一行一行输出,此文件其实是csv文件,不过默认可以当成Excel打开。
- /// </summary>
- /// <remarks>
- /// using System.IO;
- /// </remarks>
- /// <param name="dgv"></param>
- private void DataGridViewToExcel(DataGridView dgv)
- {
- SaveFileDialog dlg = new SaveFileDialog();
- dlg.Filter = "Execl files (*.xls)|*.xls";
- dlg.FilterIndex = 0;
- dlg.RestoreDirectory = true;
- dlg.CreatePrompt = true;
- dlg.Title = "保存为Excel文件";
- if (dlg.ShowDialog() == DialogResult.OK)
- {
- Stream myStream;
- myStream = dlg.OpenFile();
- StreamWriter sw = new StreamWriter(myStream, System.Text.Encoding.GetEncoding(-0));
- string columnTitle = "";
- try
- {
- //写入列标题
- for (int i = 0; i < dgv.ColumnCount; i++)
- {
- if (i > 0)
- {
- columnTitle += "/t";
- }
- columnTitle += dgv.Columns[i].HeaderText;
- }
- sw.WriteLine(columnTitle);
- //写入列内容
- for (int j = 0; j < dgv.Rows.Count; j++)
- {
- string columnValue = "";
- for (int k = 0; k < dgv.Columns.Count; k++)
- {
- if (k > 0)
- {
- columnValue += "/t";
- }
- if (dgv.Rows[j].Cells[k].Value == null)
- columnValue += "";
- else
- columnValue += dgv.Rows[j].Cells[k].Value.ToString().Trim();
- }
- sw.WriteLine(columnValue);
- }
- sw.Close();
- myStream.Close();
- }
- catch (Exception e)
- {
- MessageBox.Show(e.ToString());
- }
- finally
- {
- sw.Close();
- myStream.Close();
- }
- }
- }
- #endregion
- #region DataGridView导出到Excel,有一定的判断性
- /// <summary>
- ///方法,导出DataGridView中的数据到Excel文件
- /// </summary>
- /// <remarks>
- /// add com "Microsoft Excel 11.0 Object Library"
- /// using Excel=Microsoft.Office.Interop.Excel;
- /// using System.Reflection;
- /// </remarks>
- /// <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
- Excel.Application objExcel = null;
- Excel.Workbook objWorkbook = null;
- Excel.Worksheet objsheet = null;
- try
- {
- //申明对象
- objExcel = new Microsoft.Office.Interop.Excel.Application();
- objWorkbook = objExcel.Workbooks.Add(Missing.Value);
- objsheet = (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, 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
- #region DataGridView数据显示到Excel
- /// <summary>
- /// 打开Excel并将DataGridView控件中数据导出到Excel
- /// </summary>
- /// <param name="dgv">DataGridView对象 </param>
- /// <param name="isShowExcle">是否显示Excel界面 </param>
- /// <remarks>
- /// add com "Microsoft Excel 11.0 Object Library"
- /// using Excel=Microsoft.Office.Interop.Excel;
- /// </remarks>
- /// <returns> </returns>
- public bool DataGridviewShowToExcel(DataGridView dgv, bool isShowExcle)
- {
- if (dgv.Rows.Count == 0)
- return false;
- //建立Excel对象
- Excel.Application excel = new Excel.Application();
- excel.Application.Workbooks.Add(true);
- excel.Visible = isShowExcle;
- //生成字段名称
- for (int i = 0; i < dgv.ColumnCount; i++)
- {
- excel.Cells[1, i + 1] = dgv.Columns[i].HeaderText;
- }
- //填充数据
- for (int i = 0; i < dgv.RowCount - 1; i++)
- {
- for (int j = 0; j < dgv.ColumnCount; j++)
- {
- if (dgv[j, i].ValueType == typeof(string))
- {
- excel.Cells[i + 2, j + 1] = "'" + dgv[j, i].Value.ToString();
- }
- else
- {
- excel.Cells[i + 2, j + 1] = dgv[j, i].Value.ToString();
- }
- }
- }
- return true;
- }
- #endregion
- #region DateGridView导出到csv格式的Excel
- /// <summary>
- /// 常用方法,列之间加/t,一行一行输出,此文件其实是csv文件,不过默认可以当成Excel打开。
- /// </summary>
- /// <remarks>
- /// using System.IO;
- /// </remarks>
- /// <param name="dgv"></param>
- private void DataGridViewToExcel(DataGridView dgv)
- {
- SaveFileDialog dlg = new SaveFileDialog();
- dlg.Filter = "Execl files (*.xls)|*.xls";
- dlg.FilterIndex = 0;
- dlg.RestoreDirectory = true;
- dlg.CreatePrompt = true;
- dlg.Title = "保存为Excel文件";
- if (dlg.ShowDialog() == DialogResult.OK)
- {
- Stream myStream;
- myStream = dlg.OpenFile();
- StreamWriter sw = new StreamWriter(myStream, System.Text.Encoding.GetEncoding(-0));
- string columnTitle = "";
- try
- {
- //写入列标题
- for (int i = 0; i < dgv.ColumnCount; i++)
- {
- if (i > 0)
- {
- columnTitle += "/t";
- }
- columnTitle += dgv.Columns[i].HeaderText;
- }
- sw.WriteLine(columnTitle);
- //写入列内容
- for (int j = 0; j < dgv.Rows.Count; j++)
- {
- string columnValue = "";
- for (int k = 0; k < dgv.Columns.Count; k++)
- {
- if (k > 0)
- {
- columnValue += "/t";
- }
- if (dgv.Rows[j].Cells[k].Value == null)
- columnValue += "";
- else
- columnValue += dgv.Rows[j].Cells[k].Value.ToString().Trim();
- }
- sw.WriteLine(columnValue);
- }
- sw.Close();
- myStream.Close();
- }
- catch (Exception e)
- {
- MessageBox.Show(e.ToString());
- }
- finally
- {
- sw.Close();
- myStream.Close();
- }
- }
- }
- #endregion
- #region DataGridView导出到Excel,有一定的判断性
- /// <summary>
- ///方法,导出DataGridView中的数据到Excel文件
- /// </summary>
- /// <remarks>
- /// add com "Microsoft Excel 11.0 Object Library"
- /// using Excel=Microsoft.Office.Interop.Excel;
- /// using System.Reflection;
- /// </remarks>
- /// <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
- Excel.Application objExcel = null;
- Excel.Workbook objWorkbook = null;
- Excel.Worksheet objsheet = null;
- try
- {
- //申明对象
- objExcel = new Microsoft.Office.Interop.Excel.Application();
- objWorkbook = objExcel.Workbooks.Add(Missing.Value);
- objsheet = (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, 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
DataGridView导出到Excel的三个方法的更多相关文章
- C# - VS2019 DataGridView导出到Excel的三种方法
//原文出处:http://www.yongfa365.com/Item/DataGridViewToExcel.html 1 #region DataGridView数据显示到Excel /// & ...
- c# datagridview导出到excel【转载】
c# datagridview导出到excel[转载] http://hi.baidu.com/weizier/blog/item/8212caea1123b4d6d439c9fe.html 本作者使 ...
- delphi 导出到excel的7种方法
本文来自 爱好者8888 的CSDN 博客 ,全文地址请点击:https://blog.csdn.net/kpc2000/article/details/17066823?utm_source=cop ...
- 【转】asp.net导出数据到Excel的三种方法
来源:http://www.cnblogs.com/lishengpeng1982/archive/2008/04/03/1135490.html 原文出处:http://blog.csdn.net/ ...
- Winform 中 dataGridView 导出到Excel中的方法总结
最近,在做CS端数据导出到Excel中时网上找了很多代码感觉都不是自己想要的,通过自己的整理归纳得到一个比较通用的方法,就给大家分享一下: 该方法需要用到两个参数(即对象),一个 DataGridV ...
- C#将DataTable数据导出到EXCEL的两种方法
1.在非服务器控件的页面导出数据,需要借助一张temp空页面post回后台的数据. 前台:window.location.href = "../Temp.aspx"; 后台: tr ...
- DataGridView 导出到Excel
#region 导出四个表格到Excel /// <summary> /// 导出四个表格到Excel /// </summary> /// <param name=&q ...
- C# DataGridView显示行号的三种方法
方法一: 网上最常见的做法是用DataGridView的RowPostPaint事件在RowHeaderCell中绘制行号: private void dgGrid_RowPostPaint( obj ...
- winform DataGridView 导出到Excel表格 分类: WinForm 2014-07-04 10:48 177人阅读 评论(0) 收藏
public bool ExportDataGridview(DataGridView gridView) { if (gridView.Rows.Count ...
随机推荐
- poj2368 Buttons Nim取石子游戏
链接:http://poj.org/problem?id=2368 和前面差距还是很大啊囧 代码: k,a;main(i){,i=;i<=k/&&k%i;++i);k%i||(a ...
- Maven安装使用
环境:Ubuntu 12.04LTS,jdk1.6 1.下载maven3.05: 2.解压并获取M2/bin/mvn地址: 3.创建~/.mavenrc文件,并加入JAVA_HOME并export(需 ...
- spring4.2.3+mybatis+spring-security配置文件
1.web.xml <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi=&qu ...
- 关于css3
1.选择器: 属性选择器:[]; 查找条件:属性:我们可以通过属性来查找[^=][$=][*=][=][attr] 伪类选择器: ::: ::before:::after: 必须指定一个conten ...
- 王爽<汇编语言>实验十一 (附测试代码)
;名称: letterc ;功能: 将以0为结尾的字符串中的小写字母转变成大写字母 ;参数: ds:si指向字符串首地址 assume cs:code data segment db data end ...
- javascript知识点之DOM与window对象
在学习javascript过程中只是一知半解好多,碰到自己不知道属性方法,到最后都不知道自己学到了什么 js代码为什么这样写 为什么你知道这方法或属性可以这样用. DOM和window对象 DOM基本 ...
- CC2540中的电压检测
/** * Battery level conversion from ADC to a percentage: * * The maximum ADC value for the battery v ...
- CSS定位类型
在CSS里面布局是相当重要的,二在这一周了,学习了一些定位,很少用到,用了更好的方式浮动.BFC.IFC等去解决问题. 而也我也对定位的概念不那么熟练运用. 初步的定位类型 1.静态定位(static ...
- js中cookie的使用详细分析
JavaScript中的另一个机制:cookie,则可以达到真正全局变量的要求. cookie是浏览器 提供的一种机制,它将document 对象的cookie属性提供给JavaScript.可以由J ...
- python整理之(字符串、元组、列表、字典)
一.关于字符串的整理总结 对于字符串的操作常用的有这些: 字符串的操作通过dir()函数可以查看 我们先整理没有下划线的用法,有下划线的暂时不去考虑. 1.capitalize 功能:使字符串的首字母 ...