How can I set uп Xom.nu in such a way that elements are closed like so:

<Node></Nodes> and not <Node/>.

The reason why I want to do it in this way is that this XML is going to be imported into a tool which, unfortunately recognizes the former "close tag convention".

link|improve this question

75% accept rate
XOM has no way to do that. Do you need to use XOM? – skaffman Nov 25 '11 at 15:25
Well it is not compulsory to use it, but in comparison with other java XML apis I find it the most user-friendly and intuitive – LordDoskias Nov 25 '11 at 15:27
@skaffman I'm open or any other suggestions for XML apis – LordDoskias Nov 25 '11 at 15:54
feedback

1 Answer

up vote 1 down vote accepted

XOM is a pretty bare-bones API, it doesn't provide this level of fine control. The JDOM API, on the other hand, does do this, via its Format class, which allows you to tightly control output formatting, including non-collapsing of empty elements.

link|improve this answer
1  
Exactly what I needed, I even managed to port my XOM code without much changing :D – LordDoskias Nov 25 '11 at 16:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.