明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

使用Office 2003 Schemas創(chuàng)建Excel文件

[摘要].Net中生成Excel文件一般需要導(dǎo)入COM控件,本文介紹利用Office 2003 Schemas創(chuàng)建Excel文件的實(shí)踐。 微軟發(fā)布了Office 2003 Schemas,小雞...
.Net中生成Excel文件一般需要導(dǎo)入COM控件,本文介紹利用Office 2003 Schemas創(chuàng)建Excel文件的實(shí)踐。

微軟發(fā)布了Office 2003 Schemas,小雞射手采用XSLT方法試驗(yàn)了通過(guò)Office 2003 Schemas創(chuàng)建Excel文件的方法。轉(zhuǎn)換文件Transform.xsl定義如下:

<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

<xsl:template match="/">
<Workbook xmlns="urn:schemas-microsoft-com:office:spreadsheet"
xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel"
xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet" xmlns:html="http://www.w3.org/TR/REC-html40">
<Worksheet ss:Name="myPage">
<Table>
<xsl:for-each select="catalog/cd">
<Row>
<Cell><Data ss:Type="String"><xsl:value-of select="@title"/></Data></Cell>
<Cell><Data ss:Type="String"><xsl:value-of select="@description"/></Data></Cell>
</Row>
</xsl:for-each>
</Table>
</Worksheet>
</Workbook>
</xsl:template></xsl:stylesheet>

主要試驗(yàn)代碼如下:

DataSet ds = new DataSet();
DataTable table = new DataTable("TestDataTable");
table.Columns.Add("title", typeof(string));
table.Columns.Add("description", typeof(string));
table.Rows.Add(new object[]{"blog", "I love it!"});
table.Rows.Add(new object[]{"csdn", "China's msdn"});
ds.Tables.Add(table);

XmlDocument doc = new XmlDocument();
doc.LoadXml(ds.GetXml());
XPathNavigator nav = doc.DocumentElement.CreateNavigator();

XmlTextWriter writer = new XmlTextWriter("output.xls", null);
writer.WriteProcessingInstruction("xml", "version=\"1.0\"");
XslTransform transform = new XslTransform();
transform.Load("Transform.xsl");
transform.Transform(nav, null,writer,null);
writer.Close();

這只是最簡(jiǎn)單的試驗(yàn),通過(guò)Schema可以完成幾乎任何Excel/Word等的功能;學(xué)習(xí)中.....,嘻嘻!最后說(shuō)一句,該方法無(wú)需安裝Office 2003。