1

下面的代码正在生成上述错误。提取电子邮件地址的更好方法是什么?

// 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();
}
4

1 回答 1

0

似乎您的 Util 类是从android.util.

从导入该类com.facebook.android.util

于 2013-04-21T20:26:26.143 回答