[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: XML pretty printer?

  • From: "Robert C. Lyons" <boblyons@u...>
  • To: "Hanson, Jon" <jhanson@l...>, xml-dev@l...
  • Date: Wed, 17 Oct 2001 09:48:21 -0400

xml pretty printer
Jon,

You could use Saxon (http://saxon.sourceforge.net)
and the following XSLT stylesheet:

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

  <xsl:output method="xml"
              indent="yes"
              saxon:indent-spaces="4"/>

  <xsl:strip-space elements="*"/>

  <!-- Identity transformation. -->

  <xsl:template match="/">
    <xsl:copy-of select="."/>
  </xsl:template>

</xsl:stylesheet>

Hope this helps.

Bob

<sig name    = 'Bob Lyons'
     title   = 'B2B Integration Consultant'
     company = 'Unidex, Inc.'
     phone   = '+1-732-975-9877'
     email   = 'boblyons@u...'
     url     = 'http://www.unidex.com/'
     product = 'XML Convert: transforms flat files to XML and vice versa' />

-----Original Message-----

Hi,

does anyone know of a simple pretty printer for XML files. I'm looking for
something that:-
* is written in java.
* generates an output file that is still xml (no ascii art).
* does tag nesting indenting (ideally with a configurable number of spaces
rather than tabs).

so, for example something like:-
<A><B><S>test</S><N>2001</N></B><C>true</C></A>

would come out as:-
<A>
    <B>
        <S>test</S>
        <N>2001</N>
    </B>
    <C>true</C>
</A>


thanks,

jon hanson.


PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.