1
下面的代碼生成上述錯誤。什麼是更好的方式來提取電子郵件地址?方法parseJson(字符串)是未定義的類型的Util - 實SDK錯誤
// process the response here: executed in background thread
Log.d("Facebook-Example", "Response: " + response.toString());
JSONObject json;
try {
json = Util.parseJson(response);
fbemail = json.getString("email");
} catch (FacebookError e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
該類除非你實現你自己的Util類
進口,存在「android.util」沒有parseJson。否則發佈你自己的Util類 – wangyif2 2013-04-21 20:22:25
不,我根本沒有實現我自己的Util類。錯誤也與此有關嗎? (對不起,這裏編程很新)https://developers.facebook.com/docs/reference/android/3.0/Util/#parseJson(String) – dazhi 2013-04-21 20:51:45
我看到,你的Util類應該從Facebook導入,確保它不從'android.util'導入。 – wangyif2 2013-04-21 20:53:38