vote up 4 vote down star
2

Hi,

I was wondering what the best or most widely used apis are to convert a java object to xml. I'm fairly new on the subject. Is there some sort of api call you can make to pass in an object and return xml? Or is it much more tedious where as you need to construct the document manually by pulling out object values?

I have been reading about xerces, sax, and jaxb. I would like to continue along this open source route.

Thanks!

flag

46% accept rate

6 Answers

vote up 13 vote down check

JAXB is definitely the solution.

Why? Well, it's inside the JDK 6, so you'll never find it unmaintained.

It uses Java annotations to declare XML-related properties for classes, methods and fields.

Tutorial 1

Tutorial 2

Note: JAXB also enables you to easily 'unmarshal' XML data (which was previously marshalled from Java object instances) back to object instances.

One more great thing about JAXB is: It is supported by other Java-related technologies, such as JAX-RS (a Java RESTful API, will be availible as part of Java EE 6 in one year or so). JAX-RS can serve and receive JAXB objects on the fly, without the need of marshalling/unmarshalling them. You might want to check out Netbeans, which contains out-of-the-box support for JAX-RS. Read this tutorial for getting started.

edit:

To marshall/unmarshall 'random' (or foreign) Java objects, JAXB offers fairly simple possibility: One can declare an XmlAdapter and 'wrap' existing Java classes to be JAXB-compatible. Usage of such XmlAdapter is done by using the @XmlJavaTypeAdapter-annotation.

link|flag
This package seems geared around mapping an existing XML file to java code, rather than quick and dirty persistence of "random" java objects. ... which is a useful thing to do, but not quite what was asked for, I think. – Roboprog Apr 10 at 1:21
please see the edit section of my answer – ivan_ivanovich_ivanoff Apr 10 at 1:25
JAXB is for binding, not serialization. Use java.beans.XMLEncoder for simple serialization. – sylvarking Apr 10 at 5:47
vote up 7 vote down

You might look at xstream: http://xstream.codehaus.org/

link|flag
I've used this to write/read objects as XML. It works, and it's not hard. – Roboprog Apr 10 at 1:17
vote up 2 vote down

What about java.beans.XMLEncoder and java.beans.XMLDecoder ?

Example at http://www.rgagnon.com/javadetails/java-0470.html

Bye.

link|flag
vote up 2 vote down

I have found Simple very easy to use.

link|flag
vote up 1 vote down

There are many open source frameworks in this space. However, Simple as its name suggests, is by far the easiest way to perform serialization. Take a look at the Tutorial. Another feature is that it can perform polymorphic serialization, which means its not as constrained as JAXB for example.

link|flag
vote up 0 vote down

XMLBeans is another one, similar to JAXB. I haven't looked at JAXB in a while, when I did it was fairly bad compared to XMLBeans, but that was years ago (and I prefer to use things that are in the JDK as opposed to 3rd party ones, but I still use XMLBeans to this day).

link|flag

Your Answer

Get an OpenID
or

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