对于类型JSONObject,未定义getJSONObject(String)方法

时间:2015-03-30 19:52:38

标签: java json parsing jsonobject

我从班上回来了json

@POST("/test")
    @PermitAll
    public JSONObject test(Map form) {

    JSONObject json=new JSONObject();
    json.put("key1",1);
    json.put("key2",2);
        return json;
    }

现在我想从“getInputStream”获取此json并解析它以查看key1是否存在:

String output = "";

BufferedReader reader = new BufferedReader(new InputStreamReader(con.getInputStream()));
StringBuilder output = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
    output.append(line + "\n");
}

output=output.toString();
JSONObject jsonObj = new JSONObject();
jsonObj.put("output", output);

if (jsonObj.get("output") != null){
    **//search for key1 in output**
    System.out.println("key1 exists");
}else{
    System.out.println("key1 doesnt exist");
} 
reader.close();

如何将output转换为JSONObject并搜索“key1”?

我试过以下但箭头后出现错误:

JSONObject jObject  = new JSONObject(output);  ---> The constructor JSONObject(String) is undefined
JSONObject data = jObject.getJSONObject("data"); ---> The method getJSONObject(String) is undefined for the type JSONObject
String projectname = data.getString("name"); ----> The method getString(String) is undefined for the type JSONObject

2 个答案:

答案 0 :(得分:4)

JSONObject jsonObject = (JSONObject) JSONValue.parse(output);

试试这个。

然后您可以使用以下方法验证字段的存在:

jsonObject.has("key1");

答案 1 :(得分:0)

您需要使用解析器解析对象。在这里查看文档:{​​{3}}