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.
我从网络服务得到响应:-
response = [{"result":"false"}]
我没有得到如何解析这个
谢谢提前。
JSONObjet obj = response.getJSONObject(0); String result = obj.getString("result");
这应该可以解决问题。 如果您尝试解析的对象不止是对象,则可以使用 afor-loop并且如果不确定是否有字段,则可以使用以下行:
for-loop
if(obj.has("result"){ String result = obj.getString("result"); }