01从DataGrid中导入到Excel

Posted record-experience

tags:

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

01网络上有很多导出数据到Excel的方法,我在网上找到了一种比较简单实用的方法(参考了网友的方法)

string fileName = "";
Microsoft.Win32.SaveFileDialog dlg = new Microsoft.Win32.SaveFileDialog();
dlg.DefaultExt = ".xls"; // Default file extension
dlg.Filter = "Excel 工作簿|*.xls"; // Filter files by extension
// Show save file dialog box
Nullable<bool> resultDlg = dlg.ShowDialog();
// Process save file dialog box results
if (resultDlg == true)
{
// Save document
fileName = dlg.FileName;
}
//将DataGrid中的数据导入到excel文件中
Searchresult.SelectAllCells();
Searchresult.ClipboardCopyMode = DataGridClipboardCopyMode.IncludeHeader;
ApplicationCommands.Copy.Execute(null, Searchresult);
//String resultat = (string)Clipboard.GetData(DataFormats.CommaSeparatedValue);
String result = (string)Clipboard.GetData(DataFormats.UnicodeText);
Searchresult.UnselectAllCells();
//string textToAdd = "Example text in file";
FileStream fs = new FileStream(fileName, FileMode.Create);
StreamWriter file1 = new StreamWriter(fs, Encoding.Default);
file1.WriteLine(result.Replace(,,  ));
file1.Close();

 02 亲测实用

以上是关于01从DataGrid中导入到Excel的主要内容,如果未能解决你的问题,请参考以下文章

如何将excel导入到datagrid,然后通过db值进行过滤。

c#大圣之路笔记——c# 从DataGrid中导出数据 Session

300万数据导入导出优化方案,从80s优化到8s

300万数据导入导出优化方案,从80s优化到8s

将特定数据从excel导入到datagrid vb.net

从Excel向MATLAB中导入数据出现了nan怎么处理