Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

normally I would use JaxB, XMLBeans or Simple to convert a XML file to a Java Object. In this case I can however only use Java5 and no external libraries (for several reasons).

What is the best way to do that? My XML input is very simple. What is the most flexible and elegant way to get the XML into a Java-Object (I don't really need real JavaBeans, since I just need GETTER).

Thanks!

share|improve this question
1  
What is format of your XML document? Does you bean attributes somehow automatically map to attributes/tags in XML document. Are you flexible on this? – Gladwin Burboz Feb 5 '10 at 3:30
There is only an XML document. I want to somehow automatically create the Java Object. I would like to use something as comfortable as JaxB. Obviously SAX and DOM is not. But it seems I have no choice :( – user266751 Feb 5 '10 at 6:40

3 Answers

Well, you can do that using DOM implementation.

share|improve this answer

Java5 provides JaxP which includes DOM and SAX.

Which one to use depends largely on how big the XML document is and how fast you need to access elements. DOM will put the whole XML structure into memory, while SAX provides a serial streaming approach.

share|improve this answer

The most flexible way to do data binding is by using XPath see the article below http://onjava.com/pub/a/onjava/2007/09/07/schema-less-java-xml-data-binding-with-vtd-xml.html

share|improve this answer
I have read the entire article and only noticed at the end, that it introduces an additional processing library not shipping with the Java5 JRE. Or do I miss anything? – user266751 Feb 5 '10 at 15:54
The external lib would be excluded for many reasons. Manly extra size and license other then Apache or EPL. – user266751 Feb 5 '10 at 15:55
if you are not using any external lib, then you can only use dom, sax and xml lib shipped with jdk 5... and that meant a lot of manual coding... – vtd-xml-author Feb 5 '10 at 19:18

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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