DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Adding An XML Declaration To A REXML Document
Source: <a href="http://www.germane-software.com/software/rexml/docs/tutorial.html">REXML Tutorial - Home</a> [germane-software.com]
<snip>
REXML will not, by default, write out the XML declaration unless you specifically ask for them. If a document is read that contains an XML declaration, that declaration will be written faithfully. The other way you can tell REXML to write the declaration is to specifically add the declaration:
Adding an XML Declaration to a Document
doc = Document.new doc.add_element 'foo' doc.to_s #-> <foo/> doc << XMLDecl.new doc.to_s #-> <?xml version='1.0'?><foo/>
</snip>





