• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Argghhhh ... how to I easily use XML in Java code?

I want to use jaxb, but I can't find a good, easy to follow walkthrough on how to generate the class files from a simple XML Schema.

Anyone out there that can help me?
 
The easiest i've fouind is JDOM, read all about it (and other java XML stuff) here: http://www.cafeconleche.org/books/xmljava/
JDOM is good if you are dealing with relatively small XML files as you keep the entire DOM in memory when you work with it. If you've been using javascript to mess around with the DOM on web pages JDOM will seem very familiar.
 
Back
Top