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.
Web 服务返回一个 JSON 字符串,例如
"[{\"Id\":\"1\",\"Name\":\"Peter\"}]"
在 jQuery 中,我可以使用$.parseJSON它来将其转换为有效的 JSON 字符串
$.parseJSON
[{"Id":"1","Name":"Peter"}]
Android中有类似的方法吗?
Android 带有 org.json 包来解析 json,但还有其他库可能更容易转换为 java 对象:
自带安卓sdk:
其他可下载的软件包: