Is it possible to read serialization data in android that were made when developing iphone?

I have one file that is created on the iPhone using a serialization object. and I want to read in android. Is this possible or not? reply quickly in advance thanks

+4
source share
2 answers

I assume serialized data is in pList.

See http://code.google.com/p/plist/

+1
source

You should be able to read any file generated by another language. It is better if there is a library. This will be complicated if the file uses arrays, especially dynamic ones. This may require some pleasure with a hex editor. I can not guarantee reliability using this method, though, if the data is not simple. Just realize that this can be a daunting task.

It is better to have a file specification. You do not need to use a binary file, as you can use something like JSON or XML if that is all the text information.

+1
source

Source: https://habr.com/ru/post/1443489/


All Articles