首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

应用xls去掉XML多余的空格和换行

2012-10-13 
使用xls去掉XML多余的空格和换行Use an XSL transformation with the xsl:strip-space instruction.??xsl

使用xls去掉XML多余的空格和换行

Use an XSL transformation with the xsl:strip-space instruction.

?

?

<xsl:stylesheet version="1.0"   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:output method="xml" omit-xml-declaration="yes"/>  <xsl:strip-space elements="*"/>  <xsl:template match="@*|node()">   <xsl:copy>    <xsl:apply-templates select="@*|node()"/>   </xsl:copy>  </xsl:template></xsl:stylesheet>

?

TransformerFactory factory = TransformerFactory.newInstance();Transformer transformer = factory.newTransformer(   new StreamSource("strip-space.xsl"));DOMSource source = new DOMSource(document);StreamResult result = new StreamResult(System.out);  transformer.transform(source, result);
?

?

热点排行