XML.orgXML.org
FOCUS AREAS |XML-DEV |XML.org DAILY NEWSLINK |REGISTRY |RESOURCES |ABOUT
OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]
Re: [xml-dev] Best way to create an XML document

On Sat, Apr 12, 2008 at 2:19 PM, Andrew Welch <andrew.j.welch@gmail.com> wrote:
>  Alternatively use the streaming api in Java 6 - see XMLStreamWriter.

I tried using XMLStreamWriter (I guess this is a StAX interface).

As for the well-formedness requirement, I think this is better than
the SAX calls (the program I posted earlier in this thread).

Please consider this example:

XMLOutputFactory factory = XMLOutputFactory.newInstance();
XMLStreamWriter writer = factory.createXMLStreamWriter(System.out);
writer.writeStartDocument();
writer.writeStartElement("x");
writer.writeStartElement("y");
writer.writeAttribute("attr1", "123");
writer.writeEndDocument();
writer.flush();
writer.close();

This produces the output (as intended by me):

<?xml version="1.0" ?><x><y attr1="123"></y></x>

I think it's hard to create ill-formed XML output with
XMLStreamWriter. Or, can we?

But the Java docs say - "The XMLStreamWriter does not perform well
formedness checking on its input". What does this mean?

Can we pretty print the XML output with StaX?

Can we use StaX with JDK 1.4, in a stable manner? I need to run this
on a PC where I cannot upgrade to JDK 1.6.x.


-- 
Regards,
Mukul Gandhi


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index]


News | XML in Industry | Calendar | XML Registry
Marketplace | Resources | MyXML.org | Sponsors | Privacy Statement

Copyright 1993-2007 XML.org. This site is hosted by OASIS