从端点“test
”我返回JSONObject
:
@POST("/test")
@PermitAll
public JSONObject test(String name) {
JSONObject jsonval=new JSONObject();
json.put("key1",true);
json.put("key2","test");
return json;
}
在检查返回值的方法中,我想搜索“key1”的值。
BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()));
String json = null;
String res = "";
while ((res = in.readLine()) != null) {
json += res + "\n";
}
in.close();
if (jsonData has key1 with value true){
//do sth
}
else{
//do sth else
}
如何解析返回的JSONObject?
答案 0 :(得分:1)
您是否尝试过从其字符串表示构建JSONObject(请参阅http://www.json.org/javadoc/org/json/JSONObject.html):
JSONObject result = new JSONObject(json)
其中json
是您从InputStream
注意:您可能必须删除最后一个新行char或甚至完全省略新行