[
Lists Home |
Date Index |
Thread Index
]
At 5:02 PM +0000 9/12/02, Martin Klang wrote:
>If you compare reading and generating XML in say Java or C++ with
>doing the same thing in o:XML, it's the traditional languages that are
>verbose - just try creating a couple of elements with attributes using DOM
>or SAX and you will see what I mean!
>
You can't create attributes with SAX. SAX is read-only. You can do it
with DOM, and that's certainly way too verbose. JDOM, however, is
much simpler:
Element element = new Element("para");
para.setAttribute("id", "p1");
para.setAttribute("align", "left");
XOM will be no more and sometimes less verbose than JDOM. How does
o:XML compare to this? Could you show us the equivalent o:XML code
for the above JDOM code?
--
+-----------------------+------------------------+-------------------+
| Elliotte Rusty Harold | elharo@metalab.unc.edu | Writer/Programmer |
+-----------------------+------------------------+-------------------+
| XML in a Nutshell, 2nd Edition (O'Reilly, 2002) |
| http://www.cafeconleche.org/books/xian2/ |
| http://www.amazon.com/exec/obidos/ISBN%3D0596002920/cafeaulaitA/ |
+----------------------------------+---------------------------------+
| Read Cafe au Lait for Java News: http://www.cafeaulait.org/ |
| Read Cafe con Leche for XML News: http://www.cafeconleche.org/ |
+----------------------------------+---------------------------------+
|