winform 导出datagridview 到excel
数据不多可以用下面的方式方法,如果数据较大,不建议这样使用,可能会比较卡
如果电脑上没有Microsoft.Office.Interop.Excel.dll去找DLL下载站下载即可
需要先导入这个dll的引用
呈上代码:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using Microsoft.Office.Interop.Excel;
using System.Data.SqlClient;
namespace 导出到execl
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
//绑定datagridview
private void Bind()
{
string sql = string.Format("select id, no, name, age, gender, address from stuinfo");
//getSet 方法返回的dataset所以要进行.Tables[0]
this.dataGridView1.DataSource = SQLHelpercs.getSet(SQLHelpercs.ConString, sql).Tables[0]; ;
}
/// <summary>
/// 导出excel
/// </summary>
/// <param name="fileName">要保存excel的名称</param>
/// <param name="dg">DataGridView 的 名称</param>
public void OutExecl(string fileName, DataGridView dg)
{
if (dg.Rows.Count > 0)//判断datagridview是否有数据
{
string saveName = string.Empty;//声明一个保存名称
SaveFileDialog sgfDialog=new SaveFileDialog();//创建一个保存对象
sgfDialog.DefaultExt = "xls";//默认保存扩展名
sgfDialog.Filter = "Excel文件|*.xls";//保存文件的类型
sgfDialog.FileName = fileName;//保存的名称
sgfDialog.ShowDialog();
saveName = sgfDialog.FileName;
if(saveName.IndexOf(":")<0)return;//点了取消
Microsoft.Office.Interop.Excel.Application xlapp = new Microsoft.Office.Interop.Excel.Application();
if (xlapp == null)
{
MessageBox.Show("无法创建Execl!");
return;
}
Microsoft.Office.Interop.Excel.Workbooks wbs = xlapp.Workbooks;
Microsoft.Office.Interop.Excel.Workbook workbook =
wbs.Add(Microsoft.Office.Interop.Excel.XlWBATemplate.xlWBATWorksheet);
//添加工作薄
Microsoft.Office.Interop.Excel.Worksheet worksheet =
(Microsoft.Office.Interop.Excel.Worksheet)workbook.Worksheets[1];//取得
sheet1
//写入标题
for (int i = 0; i < dg.ColumnCount; i++)
{
worksheet.Cells[1, i + 1] = dg.Columns[i].HeaderText;
}
//写入数值
for (int r = 0; r < dg.Rows.Count; r++)
{
for (int i = 0; i < dg.ColumnCount; i++)
{
worksheet.Cells[r + 2, i + 1] = dg.Rows[r].Cells[i].Value;
}
System.Windows.Forms.Application.DoEvents();
}
worksheet.Columns.EntireColumn.AutoFit();//列宽自适应
if (saveName != "")
{
try
{
workbook.Saved = true;
workbook.SaveCopyAs(saveName);
//fileSaved = true;
}
catch (Exception ex)
{
//fileSaved = false;
MessageBox.Show("导出文件时出错,文件可能正被打开!\n" + ex.Message);
}
}
xlapp.Quit();
GC.Collect();//强行销毁
MessageBox.Show(fileName + "保存成功!", "提示", MessageBoxButtons.OK);
}
else
{
MessageBox.Show("报表为空,无表格需要导出","提示",MessageBoxButtons.OK);
}
}
private void Form1_Load(object sender, EventArgs e)
{
Bind();
}
private void 导出到excelToolStripMenuItem_Click(object sender, EventArgs e)
{
OutExecl("cool.xls",this.dataGridView1);
}
}
}
人是有思想的,这是人与动物本质的区别。人的社会属性要求我们在操守的规范下实现自我价值,越有这越给予。因此,我们要实现自己的社会价值 。这些都离不开坚定的信仰,有无信仰是一个在精神层面状态好坏的体现,不能觉得一切都无所谓。生活是一面镜子,自己是什么样子很快现行。
用知识武装自己,用信仰升华自己,用爱好装点自己,用个性标识自己。
我就是我,不一样的烟火;我就是我,不一样的水果;我就是我,不一样的花朵;我就是我,不一样的自我。
生活寄语:越努力,越幸运。
做最好的自己!