从DataGridView导出Excel的两种情况,不多说,直接记录代码(新建类,直接引用传入参数)。

using System;

using System.Collections.Generic;

using System.Linq;

using System.Text;

using System.Windows.Forms;

using System.IO;

using System.Data;

namespace cnblogs

{

public static class LoadExcel

{

//从DataGridView中导出Excel,若s为null则直接导出DataGridView中的内容

public static void DataToExcel(DataGridView m_DataView,string s)

{

SaveFileDialog kk = new SaveFileDialog();

kk.Title = "保存EXECL文件";

kk.Filter = "EXECL文件(*.xls) |*.xls |所有文件(*.*) |*.*";

kk.FilterIndex = 1;

if (kk.ShowDialog() == DialogResult.OK)

{

string FileName = kk.FileName;// +".xls";

if (File.Exists(FileName))

File.Delete(FileName);

FileStream objFileStream;

StreamWriter objStreamWriter;

string strLine = "";

objFileStream = new FileStream(FileName, FileMode.OpenOrCreate, FileAccess.Write);

objStreamWriter = new StreamWriter(objFileStream, System.Text.Encoding.Unicode);

objStreamWriter.WriteLine(s); //统计结果信息

for (int i = 0; i < m_DataView.Columns.Count; i++)

{

if (m_DataView.Columns[i].Visible == true)

{

strLine = strLine + m_DataView.Columns[i].HeaderText.ToString() + Convert.ToChar(9);

}

}

objStreamWriter.WriteLine(strLine);

strLine = "";

for (int i = 0; i < m_DataView.Rows.Count; i++)

{

if (m_DataView.Columns[0].Visible == true)

{

if (m_DataView.Rows[i].Cells[0].Value == null)

strLine = strLine + " " + Convert.ToChar(9);

else

strLine = strLine + m_DataView.Rows[i].Cells[0].Value.ToString() + Convert.ToChar(9);

}

for (int j = 1; j < m_DataView.Columns.Count; j++)

{

if (m_DataView.Columns[j].Visible == true)

{

if (m_DataView.Rows[i].Cells[j].Value == null)

strLine = strLine + " " + Convert.ToChar(9);

else

{

string rowstr = "";

rowstr = m_DataView.Rows[i].Cells[j].Value.ToString();

if (rowstr.IndexOf("\r\n") > 0)

rowstr = rowstr.Replace("\r\n", " ");

if (rowstr.IndexOf("\t") > 0)

rowstr = rowstr.Replace("\t", " ");

strLine = strLine + rowstr + Convert.ToChar(9);

}

}

}

objStreamWriter.WriteLine(strLine);

strLine = "";

}

objStreamWriter.Close();

objFileStream.Close();

MessageBox.Show("导出成功!");

}

}

//用DataGridView绑定的DataTable为参数,导出Excel

public static void DataToExcel(DataTable m_DataTable)

{

SaveFileDialog kk = new SaveFileDialog();

kk.Title = "保存EXECL文件";

kk.Filter = "EXECL文件(*.xls) |*.xls |所有文件(*.*) |*.*";

kk.FilterIndex = 1;

if (kk.ShowDialog() == DialogResult.OK)

{

string FileName = kk.FileName + ".xls";

if (File.Exists(FileName))

File.Delete(FileName);

FileStream objFileStream;

StreamWriter objStreamWriter;

string strLine = "";

objFileStream = new FileStream(FileName, FileMode.OpenOrCreate, FileAccess.Write);

objStreamWriter = new StreamWriter(objFileStream, System.Text.Encoding.Unicode);

for (int i = 0; i < m_DataTable.Columns.Count; i++)

{

strLine = strLine + m_DataTable.Columns[i].Caption.ToString() + Convert.ToChar(9);

}

objStreamWriter.WriteLine(strLine);

strLine = "";

for (int i = 0; i < m_DataTable.Rows.Count; i++)

{

for (int j = 0; j < m_DataTable.Columns.Count; j++)

{

if (m_DataTable.Rows[i].ItemArray[j] == null)

strLine = strLine + " " + Convert.ToChar(9);

else

{

string rowstr = "";

rowstr = m_DataTable.Rows[i].ItemArray[j].ToString();

if (rowstr.IndexOf("\r\n") > 0)

rowstr = rowstr.Replace("\r\n", " ");

if (rowstr.IndexOf("\t") > 0)

rowstr = rowstr.Replace("\t", " ");

strLine = strLine + rowstr + Convert.ToChar(9);

}

}

objStreamWriter.WriteLine(strLine);

strLine = "";

}

objStreamWriter.Close();

objFileStream.Close();

}

}

}

}

从DataGridView导出Excel的更多相关文章

  1. c# datagridview导出Excel文件 问题

    今天vs2010c#开发做datagridview导出Excel文件时,发现一个问题,和大家探讨一下: 第一种方式:写流的方式 private void button_Excel_Click(obje ...

  2. 一个通用的DataGridView导出Excel扩展方法(支持列数据格式化)

    假如数据库表中某个字段存放的值“1”和“0”分别代表“是”和“否”,要在DataGridView中显示“是”和“否”,一般用两种方法,一种是在sql中直接判断获取,另一种是在DataGridView的 ...

  3. C# DataGridView 导出 Excel(根据Excel版本显示选择不同后缀格式xls或xlsx)

    /// <summary> /// DataGridView导出至Excel,解决问题:打开Excel文件格式与扩展名指定格式不一致 /// </summary> /// &l ...

  4. DataGridView 导出Excel (封装)

    using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.W ...

  5. DataGridView导出Excel

    将DataGridView里面的数据,导出到表格里面去. 首先,需要添加三个引用 直接在解决方案里,右键添加引用,找到路径即可.然后再把这三个文件复制到项目的根目录下. 然后定义导出表格的函数: pu ...

  6. C# DataGridView导出Excel

    using Microsoft.Office.Interop.Excel;                using Excel=Microsoft.Office.Interop.Excel; //这 ...

  7. winform datagridview 导出excel

    using System;using System.Collections.Generic;using System.Text;using System.IO;using Microsoft.Offi ...

  8. 在窗体中把DataGridView中的数据导出Excel

    //DataGridView导出Excel private void bt_Excl_Click(object sender, EventArgs e) { SaveFileDialog saveFi ...

  9. Winform 导出Excel

    private void 导出excelToolStripMenuItem_Click(object sender, EventArgs e) { ) { var saveFileDialog1 = ...

随机推荐

  1. (四)SQL Server分区管理

    一.拆分分区(SPLIT) 在已有分区上添加一个新分区. 如下图所示,将分区03拆分成03和04分区,拆分方式先锁定旧03分区的所有数据,后将旧03分区相关数据迁移到分区04,最后删除旧03上的对应分 ...

  2. [Scala] akka actor编程(一)

    Akka基础 Akka笔记之Actor简介  Akka中的Actor遵循Actor模型.你可以把Actor当作是人.这些人不会亲自去和别人交谈.他们只通过邮件来交流.  1. 消息传递 2. 并发 3 ...

  3. Unix/Linux进程间通信(二):匿名管道、有名管道 pipe()、mkfifo()

    1. 管道概述及相关API应用 1.1 管道相关的关键概念 管道是Linux支持的最初Unix IPC形式之一,具有以下特点: 管道是半双工的,数据只能向一个方向流动:需要双方通信时,需要建立起两个管 ...

  4. C/C++ 笔试题

    /////转自http://blog.csdn.net/suxinpingtao51/article/details/8015147#userconsent# 微软亚洲技术中心的面试题!!! 1.进程 ...

  5. PHP 版去bom头

    原理: 找出文件前3个字符 如果它们对应的ASCII 值分别是  239,187,191 则判断为bom头,去掉前3个字符. 代码实现如下: $basedir = isset($_GET['dir'] ...

  6. C#夯实基础系列之const与readonly

    一.const与readonly的争议       你一定写过const,也一定用过readonly,但说起两者的区别,并说出何时用const,何时用readonly,你是否能清晰有条理地说出个一二三 ...

  7. Windows请求连接 Vmware+Ubuntu14被拒绝 的幽怨诉说

    最近为了学习Linux,在电脑上装了Vmware然后搭建了Ubuntu14的Linux操作系统 搭建完成以后,我兴冲冲的使用TeraTerm进行友情访问发现被拒绝,我很郁闷. 怎么可以这样呢. 然后调 ...

  8. python 多个 %s 例子

    input = , ) input 为: '{"a" : 1234, "b" : "14289", "c": " ...

  9. nginx实现本地图片生成缩略图

    nginx可以实现图片的缩略图效果,很多网站为了前端静态资源相应的性能会给大图自动生成一个小图,比如我们经常会在网上看到bd_64x64.png这种格式,淘宝上的小图经常会看到xxx.jpg_100x ...

  10. CSS 多类选择器

    写的代码多了,就会发现,自己越来越无知了,总以为html css很简单,已经掌握的很熟练了,其实我还差的很多. 平时没有用过css的这种写法  .a.b{display:block;}   上网一查才 ...