如何使用java从json文件的对象中获取对象的数据

时间:2013-11-04 07:32:32

标签: java json nullpointerexception

请参阅以下代码

socialMedia: 
{
      facebook: {
           profileUrl: "https://www.facebook.com/pages/Mystic-Muffin/522896574410517?rf=157791610910510"
                }
}

从上面我们得到数据

profileUrl: https://www.facebook.com/pages/Mystic-Muffin/522896574410517?rf=157791610910510

我正在使用以下代码

JSONObject web=(JSONObject) jsonObject.get("socialMedia");
JSONObject web1=(JSONObject) jsonObject.get("facebook")
    String fburl=(String) web.get("profileUrl");

我收到了java.lang.NullPointerException

帮我解决这个问题

1 个答案:

答案 0 :(得分:0)

JSONObject web=(JSONObject) jsonObject.get("socialMedia");
JSONObject web1=(JSONObject) web.get("facebook")
String fburl=(String) web1.get("profileUrl");