Rotten Tomatoes APIを使用しているときに、次のエラーが発生します。
org.json.JSONException:タイプjava.lang.Stringの値596をJSONArrayに変換できません。
JSON形式のRottenTomatoesAPIからデータを解析しようとしています。
これが私のコードのようです。
package com.my.apitest;
import java.io.*;
import org.apache.http.*;
import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.json.*;
import org.apache.http.impl.client.*;
import android.os.Bundle;
import android.app.Activity;
import android.util.Log;
import android.view.Menu;
import android.widget.EditText;
public class MainActivity extends Activity {
EditText display;
HttpResponse responseGet;
@Override
public void onCreate(Bundle savedInstanceState) {
try {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
display = (EditText) findViewById(R.id.textBox);
String result = "";
try {
HttpClient client = new DefaultHttpClient();
String movieID = "770672123";
HttpPost getCast = new HttpPost("http://api.rottentomatoes.com/api/public/v1.0/movies/" +
movieID + "/cast.json?apikey=3p9ehnhzbxwpbd6mk8fncf67");
HttpResponse responseGet = client.execute(getCast);
HttpEntity resEntityGet = responseGet.getEntity();
InputStream webs = resEntityGet.getContent();
// (i was converting to string like this)display.setText(EntityUtils.toString(resEntityGet));
try{
BufferedReader reader = new BufferedReader (new InputStreamReader (webs, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line + "\n");
}
webs.close();
result=sb.toString();
}catch(Exception e
Log.e("log_tag", "Error converting result: " + e.toString());
}
}catch(Exception e
Log.e("log_tag", "Error in http connection " + e.toString());
}
try{
JSONArray jArray = new JSONArray(result);
for (int i=0; i<jArray.length(); i++
JSONObject json_data = jArray.getJSONObject(i);
display.setText(json_data.getString("name"));
}
}
catch(JSONException e
Log.e("log_tag", "Error parsing data " + e.toString());
}
}
catch (Exception e
Log.e("Error", "Error in Code:" + e.toString());
e.printStackTrace();}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.activity_main, menu);
return false;
}
}
いくつか掘り下げた後、PHPを使用してAPIに接続する必要があるという情報の提案に出くわしました。私はAPIとモバイル開発に慣れていないので、それをどのように行うか、またはそれが実際に問題であるかどうかはわかりません。APIに接続してJSONをデコードするためのPHPファイルがないために、エラーが発生している可能性があります。それは正しいですか?どんな助けでも大歓迎です。