在java中解析HTTP JSONObject响应

时间:2015-03-27 17:58:40

标签: java http post jsonobject

从端点“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?

1 个答案:

答案 0 :(得分:1)

您是否尝试过从其字符串表示构建JSONObject(请参阅http://www.json.org/javadoc/org/json/JSONObject.html):

JSONObject result = new JSONObject(json)

其中json是您从InputStream

中读取的字符串

注意:您可能必须删除最后一个新行char或甚至完全省略新行