.NET开发

本类阅读TOP10

·NHibernate快速指南(翻译)
·vs.net 2005中文版下载地址收藏
·【小技巧】一个判断session是否过期的小技巧
·VB/ASP 调用 SQL Server 的存储过程
·?dos下编译.net程序找不到csc.exe文件
·通过Web Services上传和下载文件
·学习笔记(补)《.NET框架程序设计(修订版)》--目录
·VB.NET实现DirectDraw9 (2) 动画
·VB.NET实现DirectDraw9 (1) 托管的DDraw
·建站框架规范书之——文件命名

分类导航
VC语言Delphi
VB语言ASP
PerlJava
Script数据库
其他语言游戏开发
文件格式网站制作
软件工程.NET开发
Transform 使用的一点心得。

作者:未知 来源:月光软件站 加入时间:2005-2-28 月光软件站

Transform 使用的一点心得。
XSLT 文件:

如果在html代码之前有<xsl:value-of select=""/> 比如下面的XSLT代码:


<?xml version="1.0" encoding="UTF-8" ?>
<xsl-stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="/">
<xsl:value-of select="/DearBookOrder/MainOrder/Email"/>
<xsl:value-of select="/DearBookOrder/MainOrder/EmailTopic"/>
<html>
<head>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"/>
</head>
...... 
</html>
</xsl-stylesheet>

它跟 XML 一起解析后的结果中,最前面部分就会变成:

<?xml version="1.0" encoding="utf-8"?>[email protected] 货到付款订单
<html xmlns:fo="http://www.w3.org/1999/XSL/Format">
<head><meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0" />
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
...
</head>
.....
</html>


.....

但是:

如果在html代码之前没有<xsl:value-of select=""/> 比如下面的XSLT代码:


<?xml version="1.0" encoding="UTF-8" ?>
<xsltylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="/">
<html>
<xsl:value-of select="/DearBookOrder/MainOrder/Email"/>
<xsl:value-of select="/DearBookOrder/MainOrder/EmailTopic"/>
<head>
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0"/>
</head>
...... 
</html>
</xsl-stylesheet>

解析后的结果:

<html xmlns:fo="http://www.w3.org/1999/XSL/Format">[email protected] 货到付款订单
<head><META http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta NAME="GENERATOR" Content="Microsoft Visual Studio 6.0">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
...
</head>
....
</html>

这样就没有: <?xml version="1.0" encoding="utf-8"?> 了。

 
这时候调用的代码为:

  private void button2_Click(object sender, System.EventArgs e)
  {
   string Savefile = @"C:\1.htm";
   string XmlFile = @"E:\MyWorks\test\Trans\TestWin\Order.xml";
   string XslFile = @"E:\MyWorks\test\Trans\TestWin\Order.xslt";
   if (File.Exists(Savefile))
   {
    File.Delete(Savefile);
   }
   FileStream fs = new FileStream(Savefile,FileMode.Create);
   XmlDocument xmlDoc = new XmlDocument();
   xmlDoc.Load(XmlFile);
   XPathNavigator nav = xmlDoc.DocumentElement.CreateNavigator();
   XslTransform xmlXsl = new XslTransform();
   xmlXsl.Load(XslFile);
   xmlXsl.Transform(nav,null,fs,null);
   xmlXsl = null;
   nav = null;
   xmlDoc = null;
   fs.Close();
   fs = null;
  }


后来根据 gooGiDEA 的意见,把代码改为:

  private void button1_Click(object sender, System.EventArgs e)
  {
   string Savefile = @"C:\1.htm";
   string XmlFile = @"E:\MyWorks\test\Trans\TestWin\Order.xml";
   string XslFile = @"E:\MyWorks\test\Trans\TestWin\Order.xslt";
   if (File.Exists(Savefile))
   {
    File.Delete(Savefile);
   }
   FileStream fs = new FileStream(Savefile,FileMode.Create);

   XmlTextWriter writer = new XmlTextWriter( fs, System.Text.Encoding.Default );
   writer.Formatting = Formatting.Indented;

   XmlDocument xmlDoc = new XmlDocument();
   xmlDoc.Load(XmlFile);
   XPathNavigator nav = xmlDoc.DocumentElement.CreateNavigator();
   XslTransform xmlXsl = new XslTransform();
   xmlXsl.Load(XslFile);
   xmlXsl.Transform(nav,null,writer,null);
   xmlXsl = null;
   nav = null;
   xmlDoc = null;
   fs.Close();
   fs = null;
  
  }

就没有这个问题了。

同样,思归提供的,再 XSLT 中增加
<xsl:output method="html" />
以上两个代码都是返回正确的。


原因:
老兄,你要是指定了xsl:output=Html,随便你怎么写都不会出来<?xml version="1.0" encoding="UTF-8" ?>。
实际上你这二个xslt为什么会这样在output的help里也可以找到说明:
The default for the method attribute is chosen as follows. If any of the following conditions are true, the default output method is "html":

The root node of the result tree has an element child.
The expanded-name of the first element child of the root node (that is, the document element) of the result tree has local part "html" (in any combination of uppercase and lowercase) and a null namespace URI.
Any text nodes preceding the first element child of the root node of the result tree contain only white space characters.
Otherwise, the default output method is "xml".
Zee 提供的。

具体讨论过程看:


http://blog.joycode.com/ghj/posts/4080.aspx




相关文章

相关软件