3

I've got some files saved from an iOS app using a NSKeyedArchiver but now I need to be able to read and write to this from an Android utility? Is there any Java library out there that deals with binary plists created using 'NSKeyedArchiver'?

strange
  • 9,654
  • 6
  • 33
  • 47

1 Answers1

1

You can use the following library to read and write plist's in java. From what I've read it should be able to handle the multiple formats for a plist (Binary, XML, ASCII).

Property List Library

As for decoding NSKeyedArchiver, I am not aware of any libraries out there that can achieve this.

brightintro
  • 1,016
  • 1
  • 11
  • 16