- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Fwd: Formatting XML generated by Scala?
Wed, 2009-09-16, 11:26
Hi. I'm still reasonably new to Scala. The Scala I'm writing is to
generate XML
http://kontrawize.blogs.com/kontrawize/2009/08/generating-xml-schemas-fr...
http://kontrawize.blogs.com/kontrawize/2009/09/generating-xml-with-scala...
I like Scala for working with XML, but a problem to date is that I haven't
found a way to format the XML neatly when I save it to a file (using
scala.xml.XML.saveFull in 2.7.5.final). The XML generated by Scala has
inconsistent whitespace. When the XML is opened in an XML editor, the
tags are all over the place. While the XML is technically OK for
processing, the lack of formatting makes it too unprofessional to deliver
to clients. I need to be able to format the XML
* with indents and linebreaks, i.e. "pretty printed" as XML editors
like oXygen and XML Spy do when you press the "indent" button;
* all in a single line with no extraneous whitespace (minimum size,
for processing)
and would like to be able to do this, if possible, without have to write
the files out first and then format them in a separate step. Is this
facility available now, perhaps via a library in sbaz? (I haven't worked
out yet how to search it yet.) I want to find out whether something
already exists, or whether I need to try to put aside some time to write
something. Thanks very much in advance for any help or guidance,
Cheers, Tony.
PS Is there a way to search the archives of this list? It wasn't obvious
from the "subscribe" page. Thanks!
Wed, 2009-09-16, 11:47
#2
Re: Fwd: Formatting XML generated by Scala?
He,
On Sep 16, 2009, at 12:26 PM, Anthony B. Coates (Londata) wrote:
> I like Scala for working with XML, but a problem to date is that I
> haven't
> found a way to format the XML neatly when I save it to a file
you could try scala.xml.PrettyPrinter, like
new PrettyPrinter(80, 2).format([your XML])
Cheers,
--
Normen Müller
Sat, 2009-09-19, 23:07
#3
Re: Fwd: Formatting XML generated by Scala?
Ah, cool, thanks! Right under my nose, as these things so often are.
:-) Thanks, Cheers, Tony.
On Wed, 16 Sep 2009 11:36:45 +0100, Normen Müller
wrote:
> He,
>
> On Sep 16, 2009, at 12:26 PM, Anthony B. Coates (Londata) wrote:
>> I like Scala for working with XML, but a problem to date is that I
>> haven't
>> found a way to format the XML neatly when I save it to a file
>
> you could try scala.xml.PrettyPrinter, like
>
> new PrettyPrinter(80, 2).format([your XML])
>
> Cheers,
> --
> Normen Müller
Hi. I'm still reasonably new to Scala. The Scala I'm writing is to
generate XML
http://kontrawize.blogs.com/kontrawize/2009/08/generating-xml-schemas-fr...
http://kontrawize.blogs.com/kontrawize/2009/09/generating-xml-with-scala...
I like Scala for working with XML, but a problem to date is that I haven't
found a way to format the XML neatly when I save it to a file (using
scala.xml.XML.saveFull in 2.7.5.final). The XML generated by Scala has
inconsistent whitespace. When the XML is opened in an XML editor, the
tags are all over the place. While the XML is technically OK for
processing, the lack of formatting makes it too unprofessional to deliver
to clients. I need to be able to format the XML
* with indents and linebreaks, i.e. "pretty printed" as XML editors
like
oXygen and XML Spy do when you press the "indent" button;
* all in a single line with no extraneous whitespace (minimum size,
for
processing)
and would like to be able to do this, if possible, without have to write
the files out first and then format them in a separate step. Is this
facility available now, perhaps via a library in sbaz? (I haven't worked
out yet how to search it yet.) I want to find out whether something
already exists, or whether I need to try to put aside some time to write
something. Thanks very much in advance for any help or guidance,
Cheers, Tony.
PS Is there a way to search the archives of this list? It wasn't obvious
from the "subscribe" page. Thanks!