Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试直接从预定义的对象解析 JSON。SimpleXML 库可以完美地完成这件事,但对于 XML 文件。
因此,它是一个可以在 Android 上执行此操作的库吗?
看看这个: https ://code.google.com/p/google-gson/
它自动将 JSON 对象转换为本机 java 类。
Android 上使用了 2 个主要的 JSON 解析器:Jackson 和 GSON。本文包含两者的信息。就个人而言,根据测试基准,我更喜欢 Jackson ,它比 GSON 快。
此外,此 SO 线程讨论了 GSON 性能。你可能会发现它很有用...
Jackson是另一种 java 库,旨在进行 json<-> 对象的双向转换。这个库的性能与 gson 非常相似。