Java: Moving Away from XML Encode
- by bguiz
Hi,
We have this software which loads various bits of data from files that are written using XMLEncode (serialization using XML). We want to migrate from that to our own proprietary file format (can be XML based). Is there a automated way to achieve this initial conversion, without having to perform a deserialization, and then write those objects out in the new format?
XMLEncode format --> New proprietary file format
Thanks!