|
[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] (newbie) Formatting DOM-generated XML docs
Hello,
I'm just learning DOM/Java programming and created a
sample XML document for a one-book library:
...create a document...
Element root = doc.createElement("LIBRARY");
doc.appendChild(root);
root.setAttribute("location", "Arlington");
Element newElement = doc.createElement("BOOK");
Text abc = doc.createTextNode("XML For Beginners.");
newElement.appendChild(abc);
root.appendChild(newElement);
...serialize the document...
The resulting XML file looked like this, with the XML
info all on one line:
<?xml version="1.0" encoding="UTF-8"?>
<LIBRARY location="Arlington"><BOOK>XML For
Beginners.</BOOK></LIBRARY>
I would like it to be in more human-readable format,
however, such as this:
<?xml version="1.0" encoding="UTF-8"?>
<LIBRARY location="Arlington">
<BOOK>XML For Beginners.</BOOK>
</LIBRARY>
Would I have to manually code the whitespace, tabbing,
etc., or are their tools within JAXP that will format
XML documents like this for me?
Thanks,
Glen
_________________________________________________________
Do You Yahoo!?
Información de Estados Unidos y América Latina, en Yahoo! Noticias.
Visítanos en http://noticias.espanol.yahoo.com
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|
|||||||||

Cart








