C中数据导出到Excel表格
发布时间:2021-06-07
发布时间:2021-06-07
DataGridView 数据导出到Excel
在日常工作中,大家都习惯Office作为办公软件,因此,在开发软件的时,常常会有把数据导出到Excel等Office软件的需求。在此,收集一些常用的导出文件的源程序,希望给大家带来方便。(不断更新)
一、DataSet数据集内数据转化为Excel 1. // 作用:把DataSet数据集内数据转化为Excel、Word文件
2. // 描述:这些关于Excel、Word的导出方法,基本可以实现日常须要,其中有
些方法可以把数据导出后
3. // 生成Xml格式,再导入数据库!有些屏蔽内容没有去掉,保留下来方便学习
参考用之。
4. // 备注:请引用Office相应COM组件,导出Excel对象的一个方法要调用其中
的一些方法和属性。
5. public void DataSetToExcel(DataSet ds,string FileName)
6. {
7. try
8. {
9. //Web页面定义
10. //System.Web.UI.Page mypage=new System.Web.UI.Page();
11.
12. HttpResponse resp;
13. resp=HttpContext.Current.Response;
14. resp.ContentEncoding=System.Text.Encoding.GetEncoding("GB2312");
15. resp.AppendHeader("Content-disposition","attachment;filename="+FileName+
".xls");
16. resp.ContentType="application/ms-excel";
17.
18. //变量定义
19. string colHeaders=null;
20. string Is_item=null;
21.
22. //显示格式定义////////////////
23.
24.
25. //文件流操作定义
26. //FileStream fs=new FileStream(FileName,FileMode.Create,FileAccess.Write);
上一篇:红楼梦人物描写风格浅析
下一篇:美国联邦制的发展。