vote up 9 vote down star
4

Is there a (preferably free) Java analogue of .NET's XML serialization?

flag

7 Answers

vote up 9 vote down check

The "Official" Java API for this is now JAXB - Java API for XML Binding. The reference implementation lives at https://jaxb.dev.java.net/

link|flag
That's right, JAXB is definitely the best option! – ivan_ivanovich_ivanoff Apr 9 at 16:55
vote up 9 vote down

XStream is pretty good at serializing object to XML without much configuration and money! (it's under BSD license).

We used it in one of our project to replace the plain old java-serialization and it worked almost out of the box.

link|flag
vote up 2 vote down

You may want to look at Simple, its the closest thing I've found to the System.Xml.Serialization in .Net.

link|flag
vote up 0 vote down

If you're talking about automatic XML serialization of objects, check out Castor:

Castor is an Open Source data binding framework for Java[tm]. It's the shortest path between Java objects, XML documents and relational tables. Castor provides Java-to-XML binding, Java-to-SQL persistence, and more.

link|flag
vote up 0 vote down

XMLBeans works great if you have a schema for your XML. It creates Java objects for the schema and creates easy to use parse methods.

link|flag
vote up 0 vote down

Usually I use jaxb or XMLBeans if I need to create objects serializable to XML. Now, I can see that XStream might be very useful as it's nonintrusive and has really simple api. I'll play with it soon and probably use it. The only drawback I noticed is that I can't create object's id on my own for cross referencing.

@Barak Schiller
Thanks for posting link to XStream!

link|flag
vote up 0 vote down

Don't forget JiBX.

link|flag

Your Answer

Get an OpenID
or

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