我有以下网址:
events_value = new URL("https://graph.facebook.com/me/events?access_token="+access_token);
URL 给了我以下响应:
我试图将其放入 JSONArray:
JSONArray jArray = new JSONArray(events_value); //this where the problem comes
final String[] array_spinner = new String[jArray.length()];
for(int i=0;i<jArray.length();i++){
JSONObject json_data = jArray.getJSONObject(i);
String jj=json_data.getString("name");
array_spinner[i] = jj;
}
创建数组时无法输入 events_value。
请帮忙!