将datatable导出为excel的三种方式(转)

一、使用Microsoft.Office.Interop.Excel.DLL

  需要安装Office

  代码如下: 

 

复制代码
2 publicstaticboolExportExcel(System.Data.DataTable dt, stringpath)
3 {
4 boolsucceed =false;
5 if(dt !=null)
6 {
7 Microsoft.Office.Interop.Excel.Application xlApp =null;
8 try
9 {
10 xlApp =newMicrosoft.Office.Interop.Excel.ApplicationClass();
11 }
12 catch(Exception ex)
13 {
14 throwex;
15 }
16 
17 if(xlApp !=null)
18 {
19 try
20 {
21 Microsoft.Office.Interop.Excel.Workbook xlBook =xlApp.Workbooks.Add(true);
22 objectoMissing =System.Reflection.Missing.Value;
23 Microsoft.Office.Interop.Excel.Worksheet xlSheet =null;
24 
25 xlSheet =(Worksheet)xlBook.Worksheets[1];
26 xlSheet.Name =dt.TableName;
27 
28 introwIndex =1;
29 intcolIndex =1;
30 intcolCount =dt.Columns.Count;
31 introwCount =dt.Rows.Count;
32 
33 //列名的处理
34 for(inti =0; i <colCount; i++)
35 {
36 xlSheet.Cells[rowIndex, colIndex] =dt.Columns[i].ColumnName;
37 colIndex++;
38 }
39 //列名加粗显示
40 xlSheet.get_Range(xlSheet.Cells[rowIndex, 1], xlSheet.Cells[rowIndex, colCount]).Font.Bold =true;
41 xlSheet.get_Range(xlSheet.Cells[rowIndex, 1], xlSheet.Cells[rowCount +1, colCount]).Font.Name ="Arial";
42 xlSheet.get_Range(xlSheet.Cells[rowIndex, 1], xlSheet.Cells[rowCount +1, colCount]).Font.Size ="10";
43 rowIndex++;
44 
45 for(inti =0; i <rowCount; i++)
46 {
47 colIndex =1;
48 for(intj =0; j <colCount; j++)
49 {
50 xlSheet.Cells[rowIndex, colIndex] =dt.Rows[i][j].ToString();
51 colIndex++;
52 }
53 rowIndex++;
54 }
55 xlSheet.Cells.EntireColumn.AutoFit();
56 
57 xlApp.DisplayAlerts =false;
58 path =Path.GetFullPath(path);
59 xlBook.SaveCopyAs(path);
60 xlBook.Close(false, null, null);
61 xlApp.Workbooks.Close();
62 Marshal.ReleaseComObject(xlSheet);
63 Marshal.ReleaseComObject(xlBook);
64 xlBook =null;
65 succeed =true;
66 }
67 catch(Exception ex)
68 {
69 succeed =false;
70 }
71 finally
72 {
73 xlApp.Quit();
74 Marshal.ReleaseComObject(xlApp);
75 intgeneration =System.GC.GetGeneration(xlApp);
76 xlApp =null;
77 System.GC.Collect(generation);
78 }
79 }
80 }
81 returnsucceed;
82 }
复制代码

二、使用Aspose.Cells.dll

Aspose.Cells 是 Aspose公司推出的导出Excel的控件,不依赖Office,商业软件,网上有破解 (下载见附件)。

代码如下: 

复制代码
1 public static bool ExportExcelWithAspose(System.Data.DataTable dt, string path)
2 {
3 boolsucceed =false;
4 if(dt !=null)
5 {
6 try
7 {
8 Aspose.Cells.License li =newAspose.Cells.License();
9 stringlic =Resources.License;
10 Stream s =newMemoryStream(ASCIIEncoding.Default.GetBytes(lic));
11 li.SetLicense(s);
12 
13 Aspose.Cells.Workbook workbook =newAspose.Cells.Workbook();
14 Aspose.Cells.Worksheet cellSheet =workbook.Worksheets[0];
15 
16 cellSheet.Name =dt.TableName;
17 
18 introwIndex =0;
19 intcolIndex =0;
20 intcolCount =dt.Columns.Count;
21 introwCount =dt.Rows.Count;
22 
23 //列名的处理
24 for(inti =0; i <colCount; i++)
25 {
26 cellSheet.Cells[rowIndex, colIndex].PutValue(dt.Columns[i].ColumnName);
27 cellSheet.Cells[rowIndex, colIndex].Style.Font.IsBold =true;
28 cellSheet.Cells[rowIndex, colIndex].Style.Font.Name ="宋体";
29 colIndex++;
30 }
31 
32 Aspose.Cells.Style style =workbook.Styles[workbook.Styles.Add()];
33 style.Font.Name ="Arial";
34 style.Font.Size =10;
35 Aspose.Cells.StyleFlag styleFlag =newAspose.Cells.StyleFlag();
36 cellSheet.Cells.ApplyStyle(style, styleFlag);
37 
38 rowIndex++;
39 
40 for(inti =0; i <rowCount; i++)
41 {
42 colIndex =0;
43 for(intj =0; j <colCount; j++)
44 {
45 cellSheet.Cells[rowIndex, colIndex].PutValue(dt.Rows[i][j].ToString());
46 colIndex++;
47 }
48 rowIndex++;
49 }
50 cellSheet.AutoFitColumns();
51 
52 path =Path.GetFullPath(path);
53 workbook.Save(path);
54 succeed =true;
55 }
56 catch(Exception ex)
57 {
58 succeed =false;
59 }
60 }
61 
62 returnsucceed;
63 }
复制代码

 

三、 使用XML导出Excel

不依赖Office和其他第三方控件,需要事先准备一个模版。新建一个Excel文档,另存为XML 表格格式,将另存为的文件的扩展名改为xls,作为导出的模版。导出Excel时,用XMLDocment先打开模版,然后对模版进行增加修改操作,操作方法就是一般的XML操作方法。因为导出的文件扩展名是xls,与XML的文件格式不符,所以用Excel打开时会弹出提示。

代码如下:

复制代码
1 public static bool ExportExcelWithXML(System.Data.DataTable dt, string path)
2 {
3 boolsucceed =false;
4 if(dt ==null)
5 {
6 //导出为XML格式的Excel文件,需要事先准备好XML格式的Excel文件作为模版
7 try
8 {
9 XmlDocument doc =newXmlDocument();
10 doc.Load(System.Windows.Forms.Application.StartupPath +@"\XLS\ExportXML.xls");
11 XmlNode root =doc.DocumentElement;
12 XmlNodeList xnlist =root.ChildNodes;
13 XmlElement sheet =null;
14 XmlElement documentPro =null;
15 XmlElement styles =null;
16 foreach(XmlNode xn inxnlist)
17 {
18 XmlElement xe =(XmlElement)xn;
19 if(xe.Name =="DocumentProperties")
20 {
21 documentPro =xe;
22 }
23 elseif(xe.Name =="Worksheet")
24 {
25 sheet =xe;
26 }
27 elseif(xe.Name =="Styles")
28 {
29 styles =xe;
30 }
31 }
32 
33 if(documentPro ==null||sheet ==null||styles ==null)
34 {
35 returnfalse;
36 }
37 
38 //写入Sheet名
39 sheet.SetAttribute("Name", ssNameSpace, dt.TableName);
40 
41 //添加Style
42 XmlElement styleColumnName =doc.CreateElement("Style", ssNameSpace);
43 styleColumnName.SetAttribute("ID", ssNameSpace, "s16");
44 XmlElement fontColumnName =doc.CreateElement("Font", ssNameSpace);
45 fontColumnName.SetAttribute("FontName", ssNameSpace, "Arial");
46 fontColumnName.SetAttribute("Family", xNameSpace, "Swiss");
47 fontColumnName.SetAttribute("Color", ssNameSpace, "#000000");
48 fontColumnName.SetAttribute("Bold", ssNameSpace, "1");
49 styleColumnName.AppendChild(fontColumnName);
50 styles.AppendChild(styleColumnName);
51 
52 XmlElement styleRow =doc.CreateElement("Style", ssNameSpace);
53 styleRow.SetAttribute("ID", ssNameSpace, "s17");
54 XmlElement fontRow =doc.CreateElement("Font", ssNameSpace);
55 fontRow.SetAttribute("FontName", ssNameSpace, "Arial");
56 fontRow.SetAttribute("Family", xNameSpace, "Swiss");
57 fontRow.SetAttribute("Color", ssNameSpace, "#000000");
58 styleRow.AppendChild(fontRow);
59 styles.AppendChild(styleRow);
60 
61 //写入表格内容
62 XmlNode table =sheet.FirstChild;
63 
64 //写入行列个数
65 ((XmlElement)table).SetAttribute("ExpandedColumnCount", ssNameSpace, dt.Columns.Count.ToString());
66 ((XmlElement)table).SetAttribute("ExpandedRowCount", ssNameSpace, (dt.Rows.Count +2).ToString());
67 
68 //添加列宽
69 for(inti =0; i <dt.Columns.Count; i++)
70 {
71 XmlElement column =doc.CreateElement("Column", ssNameSpace);
72 column.SetAttribute("Width", ssNameSpace, "100");
73 column.SetAttribute("AutoFitWidth", ssNameSpace, "1");
74 table.AppendChild(column);
75 }
76 
77 //添加列名
78 XmlElement columnName =doc.CreateElement("Row", ssNameSpace);
79 for(inti =0; i <dt.Columns.Count; i++)
80 {
81 XmlElement columnCell =doc.CreateElement("Cell", ssNameSpace);
82 columnCell.SetAttribute("StyleID", ssNameSpace, "s16");
83 
84 XmlElement data =doc.CreateElement("ss:Data", ssNameSpace);
85 data.SetAttribute("Type", ssNameSpace, "String");
86 data.InnerText =dt.Columns[i].ToString();
87 
88 columnCell.AppendChild(data);
89 columnName.AppendChild(columnCell);
90 }
91 table.AppendChild(columnName);
92 
93 //添加行
94 for(inti =0; i <dt.Rows.Count; i++)
95 {
96 XmlElement row =doc.CreateElement("Row", ssNameSpace);
97 for(intj =0; j <dt.Columns.Count; j++)
98 {
99 XmlElement cell =doc.CreateElement("Cell", ssNameSpace);
100 cell.SetAttribute("StyleID", ssNameSpace, "s17");
101 
102 XmlElement data =doc.CreateElement("Data", ssNameSpace);
103 data.SetAttribute("Type", ssNameSpace, "String");
104 data.InnerText =dt.Rows[i][j].ToString();
105 
106 cell.AppendChild(data);
107 row.AppendChild(cell);
108 }
109 table.AppendChild(row);
110 }
111 
112 DateTime now =DateTime.Now;
113 stringtimeString =string.Format("{0}T{1}Z", now.ToShortDateString(), now.ToLongTimeString());
114 XmlNodeList docProNodeList =documentPro.ChildNodes;
115 foreach(XmlNode xn indocProNodeList)
116 {
117 if(xn.Name =="Author"||xn.Name =="LastAuthor")
118 {
119 //写入作者和修改者
120 xn.InnerText =Environment.UserName;
121 }
122 elseif(xn.Name =="Created"||xn.Name =="LastSaved")
123 {
124 //写入创建时间和修改时间
125 xn.InnerText =timeString;
126 }
127 elseif(xn.Name =="Company")
128 {
129 //写入公司名
130 xn.InnerText =System.Windows.Forms.Application.CompanyName;
131 }
132 }
133 
134 doc.Save(path);
135 succeed =true;
136 }
137 catch(Exception e)
138 {
139 succeed =false;
140 }
141 }
142 
143 returnsucceed;
144 }

转载于:https://www.cnblogs.com/zpc870921/p/3286664.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/421549.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

bae java上传图片_干货分享:gradle+svn轻松搞定BAE java代码上传

背景在BAE基础版和专业版上&#xff0c;java应用通过war包文件部署的时候&#xff0c;总会遇到一些小麻烦&#xff1a;BAE专业版的svn/git有单文件40M的限制&#xff0c;所以在专业版的svn/git中上传超过40M的war包(很多war包都会超过40M)是不可行的BAE基础版的svn/git&#xf…

java缺省包详解_Java在其它包中无法引用缺省包中的类

1、现象1.1 问题场景最近&#xff0c;在写测试代码时&#xff0c;将一个类(这里暂且称为ClassA)放在在缺省包中&#xff0c;也就是说&#xff0c;直接放在了src目录下&#xff0c;没有创建包。然后&#xff0c;将这个类打入了jar文件&#xff0c;提供给另外的工程(这里称为Proj…

myeclipse开发代码颜色搭配保护视力

废话不多说&#xff0c;这个东西主要是为了保护视力的&#xff0c;另外我也挺喜欢上边的颜色搭配的&#xff0c;今天特拿出来分享。直接上图 转载于:https://www.cnblogs.com/suncoolcat/p/3293895.html

linux下qt5静态编译器_笔记-linux下Qt5.3.2 静态编译

这里主要讲linux下的编译&#xff0c;windows下面比较简单依赖sudo apt-get install"^libxcb.*"libx11-xcb-dev libglu1-mesa-dev libxrender-dev libxi-dev编译选项configure -confirm-license -opensource -static -release -no-qml-debug -qt-freetype -qt-xcb -n…

猜字小游戏java方法体_java实现猜字小游戏

闲来无事&#xff0c;实现一个猜数字的小游戏&#xff0c;目的是巩固自己的基础知识&#xff0c;培养敲代码的乐趣。首先在项目中所创建的类中导包(视频教程推荐&#xff1a;java课程)import java.util.Scanner;//一个简单的文本扫描器&#xff0c;可以使用正则表达式解析原始类…

Aixs2发布webservice服务

http://www.blogjava.net/pzxsheng/archive/2012/12/21/393319.html 开发前准备&#xff1a; 1、Eclipse Java EE IDE&#xff08;Juno Service Release 1&#xff09;&#xff0c;这个必须是for J2EE 的IDE&#xff0c;因为发布webservice的插件所需。 下载地址&…

快照java开源_maven快照版本和发布版本

在使用maven过程中&#xff0c;我们在开发阶段经常性的会有很多公共库处于不稳定状态&#xff0c;随时需要修改并发布&#xff0c;可能一天就要发布一次&#xff0c;遇到bug时&#xff0c;甚至一天要发布N次。我们知道&#xff0c;maven的依赖管理是基于版本管理的&#xff0c;…

java里的sleuth_java基础之spring cloud微服务快速教程之(十一) Sleuth(zipkin) 服务链路追踪...

0、前言微服务架构上众多微服务通过REST调用&#xff0c;可能需要很多个服务协同才能完成一个接口功能&#xff0c;如果链路上任何一个服务出现问题或者网络超时&#xff0c;都会形成导致接口调用失败。随着业务的不断扩张&#xff0c;服务之间互相调用会越来越复杂。如何清晰地…

opengl模板缓冲区

相信大家有些人对opengl的模板缓冲区不是很理解&#xff0c;包括我最开始也是&#xff0c;opengl的模板缓冲区其实就是采用过滤的技术来控制那些颜色可以绘制&#xff0c;那些不能进行绘制。这里的过滤技术也就是我们的一个控制方法&#xff0c;主要体现在如下两个函数glStenci…

vue在java中的应用_开发知识-Vue篇:在Vue应用中集成O2OA

在前面的章节中&#xff0c;我们介绍了两种在O2OA中使用Vue开发应用的方式&#xff0c;已经可以满足绝大多数的情况了。如果您考虑完全脱离O2的web服务器&#xff0c;自己搭建web服务器&#xff0c;那就请阅读本章。我们还是使用Vue的Vue-CLI工具&#xff0c;创建Vue应用&#…

C++ 虚函数在基类与派生类对象间的表现及其分析

近来看了侯捷的《深入浅出MFC》&#xff0c;读到C重要性质中的虚函数与多态那部分内容时&#xff0c;顿时有了疑惑。因为书中说了这么一句&#xff1a;使用“基类之指针”指向“派生类之对象”&#xff0c;由该指针只能调用基类所定义的函数&#xff0c;如果要让基类的指针使用…

php评论盖楼怎么实现,dedecms评论盖楼实现楼层数,类似腾讯、网易的评论(5.5/5.6版)...

DEDE评论效果&#xff1a;修改后的效果&#xff1a;修改步骤一、织梦dedecms5.5版本(5.6版本请往下看)1、修改/plus/feedback_ajax.php文件的第131行(如果你没改过)下面是修改之前的代码&#xff1a;$qmsg {quote}{title}.$row[username]. 的原帖&#xff1a;{/title}{content…

datagridview绑定与详细说明 (搜集)

1、实现一个用于处理数据库教程数据检索的详细信息的方法。 下面的代码示例实现一个 getdata 方法&#xff0c;该方法对一个 sqldataadapter 组件进行初始化&#xff0c;并使用该组件填充 datatable。 然后&#xff0c;将 datatable 绑定到 bindingsource 组件。请确保将 conne…

matlab显示二值直方图,图像灰度变换、二值化、直方图

1、灰度变换1)灰度图的线性变换Gnew Fa * Gold Fb。Fa为斜线的斜率&#xff0c;Fb为y轴上的截距。Fa>1 输出图像的对比度变大&#xff0c;否则变小。Fa1 Fb≠0时&#xff0c;图像的灰度上移或下移&#xff0c;效果为图像变亮或变暗。Fa-1&#xff0c;Fb255时&#xff0c;发…