Android has default JSON support with import org.json. Is there any simple example of serializing 开发者_运维知识库and deserializing this way? Are there any advanced options for serializing/deserializing like references or inheritance?
Thanks
Try the first google hit.
What do you mean with serializing/deserializing like references or inheritance?
JSON is not a class serialization format like the build-in Java serialization. It's a pure and simple data exchange format, check the format definition.
精彩评论