在java中用于json对象的解析器

时间:2015-04-14 08:48:57

标签: java json parsing

我正在尝试在java中创建一个公共解析器。我根据我的需要从不同的类传递json对象。但是解析对我没有用。任何人都可以帮我在java中创建一个JSONObject解析器。任何帮助都将是高度赞赏......

这是我的常用解析器代码

public JSONObject jsonParser(JSONObject objJson){
        //JSONObject myjson = new JSONObject(objJson);
        JSONArray the_json_array = objJson.getJSONArray("profiles");
        JSONObject SnapshotRequest= objJson.g;
        Iterator x = SnapshotRequest.keys();
        JSONArray jsonArray = new JSONArray();

        while (x.hasNext()){
            String key = (String) x.next();
            jsonArray.put(songs.get(key));
        }

}

在此代码中,我收到了需要强制转换的错误。

JSONArray the_json_array = objJson.getJSONArray("profiles");

但是演员不会工作。

0 个答案:

没有答案