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?

sylvanaar
  • 8,096
  • 37
  • 59

2 Answers2

2

I think you can use XStream.

InsertNickHere
  • 3,616
  • 3
  • 26
  • 23
1

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

ebt
  • 1,358
  • 1
  • 13
  • 18