views:

22

answers:

2

I am using Java native serialization along with a dynamic proxy to save the parameters and returns of a series of method calls to a file.

I would like to convert the binary file that is generated to and from XML.

Is this something that I will need to reinvent, or are there already tools out there that can do this?

+1  A: 

I think you can use XStream.

InsertNickHere
+1  A: 

Castor or XStream are two solid choices. XStream has the benefit of drop dead simple usage

ebt