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

(newbie) Formatting DOM-generated XML docs

  • To: xml-dev@l...
  • Subject: (newbie) Formatting DOM-generated XML docs
  • From: Glen Mazza <glenmazza@y...>
  • Date: Sun, 28 Jul 2002 22:17:49 -0500 (CDT)
  • In-reply-to: <1027889701.5383.ezmlm@l...>

dom formatting
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!

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.