请参阅以下代码
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
帮我解决这个问题
答案 0 :(得分:0)
JSONObject web=(JSONObject) jsonObject.get("socialMedia");
JSONObject web1=(JSONObject) web.get("facebook")
String fburl=(String) web1.get("profileUrl");