All articles| All Pictures| All Softwares| All Video| Go home page| Write articles| Upload pictures

Reading number is top 10 articles
aspx页面弹出窗口代码大全_[Asp.Net教程]
SQL,Server常见连接错误_[SQL,Server教程]
高效交换XML文档_[XML教程]
如何将应用程序由ASP.NET,1.1移植到ASP.NET,2.0_[Asp.Net教程]
网页特效:在任何位置显示html菜单_JavaScript技术_编程技术
XML入门教程-XML CDATA_[XML教程]
document.getElementById的一些细节_JavaScript技术_编程技术
C#中常见的错误类型
利用C#创建,IIS,站点并设置.NET,Framework版本为ASP.NET,2.0,的方法,一_[Asp.Net教程]
安装SQL Server 2000的错误及解决_[SQL Server教程]
Reading number is top 10 pictures
邪恶搞笑内涵图
含苞欲放的素颜美少女1
So beauty, will let you spray blood8
中国处女图鉴2
西方气质的东方美女1
全身蕾丝丝质美臀
NeedWallpaper14
Soong ching ling's former residence1
A cat have life principles
乳娘帕梅拉安德森4
Download software ranking
Sora aoi 120 minutes
艳兽都市
Professional killers2 for Android
Unix video tutorial4
I for your crazy
Boxer's Top ten classic battle5
Unix video tutorial6
实战黑客不求人
Boxer vs Yellow1
Boxer's Top ten classic battle7
归海一刀 published in(发表于) 2014/1/30 1:27:11 Edit(编辑)
DataSet数据导入Excel的c#代码_[Asp.Net教程]

DataSet数据导入Excel的c#代码_[Asp.Net教程]

DataSet数据导入Excel的c#代码_[Asp.Net教程]
///
/// 将DataSet里所有数据导入Excel.
/// 需要添加COM: Microsoft Excel Object Library.
/// using Excel;
///

///
///
private void ExportToExcel(string filePath, DataSet ds)
{
object oMissing = System.Reflection.Missing.Value;
Excel.ApplicationClass xlApp = new Excel.ApplicationClass();
try
{
//打开EXCEL文件
Excel.Workbook xlWorkbook = xlApp.Workbooks.Open(filePath, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing, oMissing,oMissing,oMissing);
// Excel.Workbook xlWorkbook=xlApp.Workbooks.只有Open属性,没有Write属性
Excel.Worksheet xlWorksheet;
//循环所有DataTable
for (int i = 0; i < ds.Tables.Count; i++)
{
//添加入一个新的Sheel页
xlWorksheet = (Excel.Worksheet)xlWorkbook.Worksheets.Add(oMissing, oMissing, 1, oMissing);
//以TableName作为新加的sheel页名
xlWorksheet.Name = ds.Tables[i].TableName;
//取出这个DataTable中的所有值,暂时存于stringBuffer中
string stringBuffer = "";
// for(int m=0;m for (int j = 0; j < ds.Tables[i].Rows.Count; j++)
{
for (int k = 0; k < ds.Tables[i].Columns.Count; k++)
{
stringBuffer += ds.Tables[i].Rows[j][k].ToString();
if (k < ds.Tables[i].Columns.Count - 1)
stringBuffer += "\t";
}
stringBuffer += "\n";
}
//利用系统剪贴板
System.Windows.Forms.Clipboard.SetDataObject("");
//将stringBuffer放入剪贴板
System.Windows.Forms.Clipboard.SetDataObject(stringBuffer);
//选中这个sheel页中的第一个单元格
((Excel.Range)xlWorksheet.Cells[1, 1]).Select();
//粘贴
xlWorksheet.Paste(oMissing, oMissing);
//清空系统剪贴板
System.Windows.Forms.Clipboard.SetDataObject("");
}
//保存并关闭这个工作薄
xlWorkbook.Close(Excel.XlSaveAction.xlSaveChanges, oMissing, oMissing);
System.Runtime.InteropServices.Marshal.ReleaseComObject(xlWorkbook);
xlWorkbook = null;
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
finally
{
//释放...
xlApp.Quit();
System.Runtime.InteropServices.Marshal.ReleaseComObject(xlApp);
xlApp = null;
GC.Collect();
}
}

}


添加到del.icio.us 添加到新浪ViVi 添加到百度搜藏 添加到POCO网摘 添加到天天网摘365Key 添加到和讯网摘 添加到天极网摘 添加到黑米书签 添加到QQ书签 添加到雅虎收藏 添加到奇客发现 diigo it 添加到饭否 添加到飞豆订阅 添加到抓虾收藏 添加到鲜果订阅 digg it 貼到funP 添加到有道阅读 Live Favorites 添加到Newsvine 打印本页 用Email发送本页 在Facebook上分享


Disclaimer Privacy Policy About us Site Map

If you have any requirements, please contact webmaster。(如果有什么要求,请联系站长)
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.