相关文章推荐
淡定的菠萝  ·  元对象机制_百度百科·  10 月前    · 
冷静的牛排  ·  Flask-SocketIO ...·  1 年前    · 
首页 > 软件编程 > C#教程 > C# DataGridView导出Excel

C#中DataGridView导出Excel的两种方法

作者:贝爷_野外求生

这篇文章主要介绍了C#中DataGridView导出Excel的两种方法,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

第一种是用数据流导出:

#region SaveFileDialog saveFileDialog = new SaveFileDialog(); saveFileDialog.Filter = "Execl files (*.xls)|*.xls"; saveFileDialog.FilterIndex = 0; saveFileDialog.RestoreDirectory = true; saveFileDialog.CreatePrompt = true; saveFileDialog.Title = "Export Excel File"; saveFileDialog.ShowDialog(); if (saveFileDialog.FileName == "") return; Stream myStream; myStream = saveFileDialog.OpenFile(); StreamWriter sw = new StreamWriter(myStream, System.Text.Encoding.GetEncoding(-0)); string str = ""; for (int i = 0; i < dataGridView1.ColumnCount; i++) if (i > 0) str += "\t"; str += dataGridView1.Columns[i].HeaderText; sw.WriteLine(str); for (int j = 0; j < dataGridView1.Rows.Count; j++) string tempStr = ""; for (int k = 0; k < dataGridView1.Columns.Count; k++) if (k > 0) tempStr += "\t"; tempStr += dataGridView1.Rows[j].Cells[k].Value.ToString(); sw.WriteLine(tempStr); sw.Close(); myStream.Close(); catch (Exception ex) //MessageBox.Show(ex.ToString()); finally sw.Close(); myStream.Close(); #endregion

这种方法的优点就是导出比较快,但是excel的表格里面设置标题,字体样式等都不能弄,因为你是用数据流直接导出为excel的,除非你能在数据流中设置这些样式,这个我还没这本事,哪位大哥会的教一下...嘿嘿

第二种方法是直接写一个类,这个类直接操作EXCEL的:

using System; using System.Collections.Generic; using System.Windows.Forms; using System.Text; using System.Diagnostics; using System.IO; using Microsoft.Office.Interop.Excel; namespace Excel public class Export /// <summary> /// DataGridView导出Excel /// </summary> /// <param name="strCaption">Excel文件中的标题</param> /// <param name="myDGV">DataGridView 控件</param> /// <returns>0:成功;1:DataGridView中无记录;2:Excel无法启动;9999:异常错误</returns> public int ExportExcel(string strCaption, DataGridView myDGV, SaveFileDialog saveFileDialog) int result = 9999; saveFileDialog.Filter = "Execl files (*.xls)|*.xls"; saveFileDialog.FilterIndex = 0; saveFileDialog.RestoreDirectory = true; //saveFileDialog.CreatePrompt = true; saveFileDialog.Title = "Export Excel File"; if ( saveFileDialog.ShowDialog()== DialogResult.OK) if (saveFileDialog.FileName == "") MessageBox.Show("请输入保存文件名!"); saveFileDialog.ShowDialog(); // 列索引,行索引,总列数,总行数 int ColIndex = 0; int RowIndex = 0; int ColCount = myDGV.ColumnCount; int RowCount = myDGV.RowCount; if (myDGV.RowCount == 0) result = 1; // 创建Excel对象 Microsoft.Office.Interop.Excel.Application xlApp = new Microsoft.Office.Interop.Excel.ApplicationClass(); if (xlApp == null) result = 2; // 创建Excel工作薄 Microsoft.Office.Interop.Excel.Workbook xlBook = xlApp.Workbooks.Add(true); Microsoft.Office.Interop.Excel.Worksheet xlSheet = (Microsoft.Office.Interop.Excel.Worksheet)xlBook.Worksheets[1]; // 设置标题 Microsoft.Office.Interop.Excel.Range range = xlSheet.get_Range(xlApp.Cells[1, 1], xlApp.Cells[1, ColCount]); //标题所占的单元格数与DataGridView中的列数相同 range.MergeCells = true; xlApp.ActiveCell.FormulaR1C1 = strCaption; xlApp.ActiveCell.Font.Size = 20; xlApp.ActiveCell.Font.Bold = true; xlApp.ActiveCell.HorizontalAlignment = Microsoft.Office.Interop.Excel.Constants.xlCenter; // 创建缓存数据 object[,] objData = new object[RowCount + 1, ColCount]; //获取列标题 foreach (DataGridViewColumn col in myDGV.Columns) objData[RowIndex, ColIndex++] = col.HeaderText; // 获取数据 for (RowIndex = 1; RowIndex < RowCount; RowIndex++) for (ColIndex = 0; ColIndex < ColCount; ColIndex++) if (myDGV[ColIndex, RowIndex - 1].ValueType == typeof(string) || myDGV[ColIndex, RowIndex - 1].ValueType == typeof(DateTime))//这里就是验证DataGridView单元格中的类型,如果是string或是DataTime类型,则在放入缓存时在该内容前加入" "; objData[RowIndex, ColIndex] = "" + myDGV[ColIndex, RowIndex - 1].Value; objData[RowIndex, ColIndex] = myDGV[ColIndex, RowIndex - 1].Value; System.Windows.Forms.Application.DoEvents(); // 写入Excel range = xlSheet.get_Range(xlApp.Cells[2, 1], xlApp.Cells[RowCount, ColCount]); range.Value2 = objData; xlBook.Saved = true; xlBook.SaveCopyAs(saveFileDialog.FileName); catch (Exception err) result = 9999; finally xlApp.Quit(); GC.Collect(); //强制回收 //返回值 result = 0; return result;

这个优点是能设置样式什么的。缺点就是导出速度慢...

以上两种方法都是参考了很多料的..写在这里以便于相互学习..

补充一下:用第二种方法导出excel会有格式方面的变化,比如身份证号码按科学计算法导出了,不是按原先的模型

改进方法是在写入excel时添加一个格式声明:range.NumberFormatLocal = "@";

如:// 写入Excel

range = xlSheet.get_Range(xlApp.Cells[2, 1], xlApp.Cells[RowCount + 2, ColCount]); range.NumberFormatLocal = "@"; range.Value2 = objData;

到此这篇关于C#中DataGridView导出Excel的两种方法的文章就介绍到这了,更多相关C# DataGridView导出Excel内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
  • C# Winform中DataGridView导出为Excel的实现示例
    C# Winform中DataGridView导出为Excel的实
    2022-04-04
  • C#并行编程之信号量
    C#并行编程之信号量
    2022-04-04
  • C#并行编程之PLINQ(并行LINQ)
    C#并行编程之PLINQ(并行LINQ)
    2022-04-04
  • C#并行编程之Task同步机制
    C#并行编程之Task同步机制
    2022-04-04
  • 美国设下计谋,用娘炮文化重塑日本,已影响至中国
    美国设下计谋,用娘炮文化重塑日本,已影响至中国
    2021-11-19
  • 时空伴随者是什么意思?时空伴随者介绍
    时空伴随者是什么意思?时空伴随者介绍
    2021-11-09
  • 工信部称网盘企业免费用户最低速率应满足基本下载需求,天翼云盘回应:坚决支持,始终
    工信部称网盘企业免费用户最低速率应满足基本下载需求,天翼云盘回应:坚决支持,始终
    2021-11-05
  • 2022年放假安排出炉:五一连休5天 2022年所有节日一览表
    2022年放假安排出炉:五一连休5天 2022年所有节日一览表
    2021-10-26
  • 电脑版 - 返回首页

    2006-2023 脚本之家 JB51.Net , All Rights Reserved.
    苏ICP备14036222号