output method="xml" indent="yes" encoding="ISO-8859-1" : output « XSLT stylesheet « XML Tutorial

XML Tutorial
1. Introduction
2. Namespace
3. XML Schema
4. XPath
5. XSLT stylesheet
Java
XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
C# / C Sharp
C# / CSharp Tutorial
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
XML Tutorial » XSLT stylesheet » output 
5. 2. 2. output method="xml" indent="yes" encoding="ISO-8859-1"
File: Data.xml

<?xml version="1.0" encoding="UTF-8"?>

<europe>
 <scandinavia>
  <state>Finland</state>
  <state>Sweden</state>
  <state>Iceland</state>
  <state>Norway</state>
  <state>Denmark</state>
 </scandinavia>
</europe>

File: Transform.xslt

<?xml version="1.0" encoding="UTF-8" ?>
<xsl:stylesheet version="1.0"
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  xmlns="http://www.java2java.com"
  xmlns:sc="http://www.java2java.com/scand"
  xmlns:t="http://www.java2java.com/temp">
  <xsl:output method="xml" indent="yes" encoding="ISO-8859-1" />
  <xsl:namespace-alias stylesheet-prefix="t" result-prefix="xsl" />

  <xsl:template match="europe">
    <t:stylesheet version="1.0">
      <t:output method="xml" indent="yes" encoding="ISO-8859-1" />
      <t:namespace-alias stylesheet-prefix="sc" result-prefix="#default" />
      <xsl:text>&#10;&#10;</xsl:text>
      <t:template match="{name()}">
        <t:apply-templates select="scandinavia" />
      </t:template>
      <xsl:text>&#10;</xsl:text>

      <xsl:apply-templates select="scandinavia" />

      <xsl:apply-templates select="scandinavia/state[1]" />

      <xsl:text>&#10;</xsl:text>

    </t:stylesheet>

  </xsl:template>

  <xsl:template match="scandinavia">
    <xsl:text>&#10;</xsl:text>
    <t:template match="{name()}">
      <sc:scandinavia>
        <t:apply-templates select="state">
          <t:sort />
        </t:apply-templates>
      </sc:scandinavia>
    </t:template>
    <xsl:text>&#10;</xsl:text>
  </xsl:template>

  <xsl:template match="state">
    <xsl:text>&#10;</xsl:text>
    <t:template match="{name()}">
      <sc:country>
        <t:value-of select="." />
      </sc:country>
    </t:template>
    <xsl:text>&#10;</xsl:text>
  </xsl:template>

</xsl:stylesheet>
Output:

<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:sc="http://www.java2java.com/scand"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns="http://www.java2java.com"
                version="1.0">
   <xsl:output method="xml" indent="yes" encoding="ISO-8859-1"/>
   
   <xsl:namespace-alias stylesheet-prefix="sc" result-prefix="#default"/>

   <xsl:template match="europe">
      <xsl:apply-templates select="scandinavia"/>
   </xsl:template>

   <xsl:template match="scandinavia">
      <sc:scandinavia>
         <xsl:apply-templates select="state">
            <xsl:sort/>
         </xsl:apply-templates>
      </sc:scandinavia>
   </xsl:template>

   <xsl:template match="state">
      <sc:country>
         <xsl:value-of select="."/>
      </sc:country>
   </xsl:template>

</xsl:stylesheet>
5. 2. output
5. 2. 1.  Element
5. 2. 2. output method="xml" indent="yes" encoding="ISO-8859-1"
5. 2. 3. output indent="yes"
5. 2. 4. output method="text" indent="no"
5. 2. 5. output method="text"
5. 2. 6. Set output encoding, indent, standalone, doctype
5. 2. 7. html: "disable-output-escaping xsl:output"
5. 2. 8. xml: "disable-output-escaping xsl:output"
5. 2. 9. text: "disable-output-escaping xsl:output"
5. 2. 10. The XSLT stylesheet used to generate a CSV file
5. 2. 11. outputs in UTF-8
5. 2. 12. in UTF-16
5. 2. 13. in Cp1250
5. 2. 14. in ISO-8859-1
5. 2. 15. text output method outputs the string-value of every text node
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.