DataGridview中的数据如何导出到Excel中

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了DataGridview中的数据如何导出到Excel中相关的知识,希望对你有一定的参考价值。

参考技术A 2、做的系统是:机房收费系统
3、系统开发人员:黄爱岗
4、DataGridView获得数据:DataGridView1.DataSource=DataSet1.Tables(0)(注:通过查询SQL数据库将查询到的数据全部放入DataSet中,然后赋给DataGridView)
5、导出数据到Excel表:首先需要添加引用【项目(project)-添加引用(add reference)-Microsoft .Office.Interop.Excel】,其他代码如下:
Dim MyExcel As New Microsoft.Office.Interop.Excel.Application() '定义并实例化Excel工作表
MyExcel.Application.Workbooks.Add(True) '打开Excel工作簿
MyExcel.Visible = True 'Excel设置为可见的
Dim Col As Integer '定义整型变量ColTryFor Col = 0 To DataGridView1.ColumnCount – 1 'Col的变化范围
MyExcel.Cells(1, Col + 1) = Me.DataGridView1.Columns(Col).HeaderText '添加列标题Next ColCatch ex As Exception
MsgBox(ex.Message) '弹出捕获的消息
Exit Sub '退出程序End Try
Dim i As Integer '定义整型行变量i
Dim j As Integer '定义整型列变量jTryFor i = 0 To DataGridView1.RowCount – 2 '行变量i的取值范围
For j = 0 To DataGridView1.ColumnCount – 1 '列变量j的取值范围
If Me.DataGridView1(j, i).Value IsNot System.DBNull.Value Then
MyExcel.Cells(i + 2, j + 1) = DataGridView1(j, i).Value.ToString() '将DataGridview中的数据添加到Excel表中End IfNext jNext iMsgBox(导出成功!) '提示导出成功
Catch ex As Exception
MsgBox(ex.Message) '弹出捕获的消息本回答被提问者采纳

C#winform中如何把表导出到EXCEL

C#winform中如何把表导出到EXCEL 使用的是datagridview控件,把其中的表导入到一个新的EXCEL文件中。是不是把datagridview中表遍历一遍,一个个写到EXCEL文件中?具体怎么写高手指点下,我用的ACCESS数据库。最好给个例子看看~

DataSet数据集内数据转化为Excel文件
/// <summary>
/// ExportFiles 的摘要说明。
/// 作用:把DataSet数据集内数据转化为Excel文件
/// 描述:导出Excel文件
/// 备注:请引用Office相应COM组件,导出Excel对象的一个方法要调用其中的一些方法和属性。
/// </summary>
public class ExportFiles

private string filePath = "";
public ExportFiles(string excel_path)

//
// TODO: 在此处添加构造函数逻辑
//
filePath = excel_path;

/// <summary>
/// 将指定的Dataset导出到Excel文件
/// </summary>
/// <param name="dt"></param>
/// <returns></returns>
public bool ExportToExcel(System.Data.DataSet ds, string ReportName)

if (ds.Tables[0].Rows.Count == 0)

MessageBox.Show("数据集为空");

Microsoft.Office.Interop.Excel._Application xlapp = new ApplicationClass();
Workbook xlbook = xlapp.Workbooks.Add(true);
Worksheet xlsheet = (Worksheet)xlbook.Worksheets[1];
Range range = xlsheet.get_Range(xlapp.Cells[1, 1], xlapp.Cells[1, ds.Tables[0].Columns.Count]);
range.MergeCells = true;
xlapp.ActiveCell.FormulaR1C1 = ReportName;
xlapp.ActiveCell.Font.Size = 20;
xlapp.ActiveCell.Font.Bold = true;
xlapp.ActiveCell.HorizontalAlignment = Microsoft.Office.Interop.Excel.Constants.xlCenter;
int colIndex = 0;
int RowIndex = 2;
//开始写入每列的标题
foreach (DataColumn dc in ds.Tables[0].Columns)

colIndex++;
xlsheet.Cells[RowIndex, colIndex] = dc.Caption;

//开始写入内容
int RowCount = ds.Tables[0].Rows.Count;//行数
for (int i = 0; i < RowCount; i++)

RowIndex++;
int ColCount = ds.Tables[0].Columns.Count;//列数
for (colIndex = 1; colIndex <= ColCount; colIndex++)

xlsheet.Cells[RowIndex, colIndex] = ds.Tables[0].Rows[i][colIndex - 1];//dg[i, colIndex - 1];
xlsheet.Cells.ColumnWidth = ds.Tables[0].Rows[i][colIndex - 1].ToString().Length;



xlbook.Saved = true;
xlbook.SaveCopyAs(filePath);
xlapp.Quit();
GC.Collect();
return true;


public bool ExportToExcelOF(System.Data.DataSet ds, string ReportName)

if (ds.Tables[0].Rows.Count == 0)

MessageBox.Show("数据集为空");

string FileName = filePath;

//System.Data.DataTable dt = new System.Data.DataTable();
FileStream objFileStream;
StreamWriter objStreamWriter;
string strLine = "";
objFileStream = new FileStream(FileName, FileMode.OpenOrCreate, FileAccess.Write);
objStreamWriter = new StreamWriter(objFileStream, System.Text.Encoding.Unicode);

strLine = ReportName;
objStreamWriter.WriteLine(strLine);
strLine = "";

for (int i = 0; i < ds.Tables[0].Columns.Count; i++)

strLine = strLine + ds.Tables[0].Columns[i].ColumnName.ToString() + " " + Convert.ToChar(9);

objStreamWriter.WriteLine(strLine);
strLine = "";

for (int i = 0; i < ds.Tables[0].Rows.Count; i++)

strLine = strLine + (i + 1) + Convert.ToChar(9);
for (int j = 1; j < ds.Tables[0].Columns.Count; j++)

strLine = strLine + ds.Tables[0].Rows[i][j].ToString() + Convert.ToChar(9);

objStreamWriter.WriteLine(strLine);
strLine = "";

objStreamWriter.Close();
objFileStream.Close();

//Microsoft.Office.Interop.Excel._Application xlapp = new ApplicationClass();
//Workbook xlbook = xlapp.Workbooks.Add(true);
//Worksheet xlsheet = (Worksheet)xlbook.Worksheets[1];
//Range range = xlsheet.get_Range(xlapp.Cells[1, 1], xlapp.Cells[1, ds.Tables[0].Columns.Count]);
//range.EntireColumn.AutoFit();
//xlapp.Quit();
return true;

参考技术A http://apps.hi.baidu.com/share/detail/31861190

网上能搜到许多DataTable导出EXCEL的文章,但实施起来,可行者不多也!本人认真调试了一番,问题得以解决,现整理与大家分享:
一、实现目标:

由一个内存表DataTable,导出字段名及其内容的完整EXCEL表格

二、实施步骤:

1、添加引用:

这是非常生要的一步,很多人调试不成都是因为这步没做好:

需要在你的解决方案中添加COM引用,选择 "Microsoft EXCEL ...."(根据版本有所不同),这是为下面的 EXCEL相关命名空间的引用做铺垫的;

我用的EXCEL 2007,添加COM引用后如下图:

增加了两个引用文件!

2、命名空间引用部分:

增加下面的引用内容:

using Microsoft.Office.Interop.Excel;

3、定义函数:

public static void DataTabletoExcel(System.Data.DataTable tmpDataTable, string strFileName)



if (tmpDataTable == null)

return;

int rowNum = tmpDataTable.Rows.Count;

int columnNum = tmpDataTable.Columns.Count;

int rowIndex = 1;

int columnIndex = 0;

Application xlApp = new ApplicationClass();

xlApp.DefaultFilePath = "";

xlApp.DisplayAlerts = true;

xlApp.SheetsInNewWorkbook = 1;

Workbook xlBook = xlApp.Workbooks.Add(true);

//将DataTable的列名导入Excel表第一行

foreach (DataColumn dc in tmpDataTable.Columns)



columnIndex++;

xlApp.Cells[rowIndex, columnIndex] = dc.ColumnName;



//将DataTable中的数据导入Excel中

for (int i = 0; i < rowNum; i++)



rowIndex++;

columnIndex = 0;

for (int j = 0; j < columnNum; j++)



columnIndex++;

xlApp.Cells[rowIndex, columnIndex] = tmpDataTable.Rows[i][j].ToString();





//xlBook.SaveCopyAs(HttpUtility.UrlDecode(strFileName, System.Text.Encoding.UTF8));

xlBook.SaveCopyAs(strFileName);





4、 使用实例:

System.Data.DataTable dt = ……; //准备好你的DataTable

DataTabletoExcel(dt, "C:\\\\中国.XLS"); //调用自定义的函数,当然输出文件你可以随便写

三、测试环境:

VS2008,EXCEL 2007
参考技术B DataTable写入DB的方式导入

以上是关于DataGridview中的数据如何导出到Excel中的主要内容,如果未能解决你的问题,请参考以下文章

如何将.net中DataGridView中的数据导出到Excel文本(是在windows窗体中)

C#读取Excel表格数据到DataGridView中和导出DataGridView中的数据到Excel

C#winform 两个datagridview中的数据一键导出到同一个excel中两个sheet页里

Python 2.7_初试连接Mysql查询数据导出到exce_20161216

将excel数据导入到datagridview中

C# 中的 DataGridView 导出器