Hey guys, I have a Cocoa application that sends an NSDictionary over the network to various devices. Previously, it only sent to other Macs, so using NSKeyedArchiver to write to an NSData object worked fine, on the other end I would use an NSKeyedUnarchiver.
I now am writing a Java implementation for Windows support, and I need to convert the plist data, which is coming over the network like:
< 3c3f786d 6c207665 7273696f ... >
to a simple Java String. (So that I can read it with an XML parser.) The opposite seems to be answered here: [https://stackoverflow.com/questions/3774872] but I still can't quite wrap my head around what order I should be performing the encoding/decoding. 1