Solution:私の側では間違いでした。
正しい方法はresponse.body()。string()response.body.toString()以外
ImはJettyサーブレットを使用しています。URLはishttp://172.16.10.126:8789/test/path/jsonpage
です。このURLをリクエストするたびに返されます
{"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]}
ブラウザーにURLを入力すると表示されますが、残念ながら、Okhttp
でリクエストすると、json文字列以外の種類のメモリアドレスが表示されます。
TestActivity﹕ com.squareup.okhttp.internal.http.RealResponseBody@537a7f84
使用しているOkhttpコード:
OkHttpClient client = new OkHttpClient();
String run(String url) throws IOException {
Request request = new Request.Builder()
.url(url)
.build();
Response response = client.newCall(request).execute();
return response.body().string();
}
誰も助けてくれますか?
try {
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url(urls[0])
.build();
Response responses = null;
try {
responses = client.newCall(request).execute();
} catch (IOException e) {
e.printStackTrace();
}
String jsonData = responses.body().string();
JSONObject Jobject = new JSONObject(jsonData);
JSONArray Jarray = Jobject.getJSONArray("employees");
for (int i = 0; i < Jarray.length(); i++) {
JSONObject object = Jarray.getJSONObject(i);
}
}
列に追加する例:
JCol employees = new employees();
colums.Setid(object.getInt("firstName"));
columnlist.add(lastName);
私も同じ問題に直面しています
このコードを使用してください:
// notice string() call
String resStr = response.body().string().toString();
JSONObject json = new JSONObject(resStr);
それは間違いなく動作します
私のコードで見たように。 Responseからbodyの値が取得されると、空になります。
String str = response.body().string(); // {response:[]}
String str1 = response.body().string(); // BLANK
したがって、bodyから値を取得すると空になると思います。
提案:何度も使用できる文字列に保存します。
Json文字列からjsonデータを取得できたことを願っています。
まあこれは助けになると思う
try {
OkHttpClient client = new OkHttpClient();
Request request = new Request.Builder()
.url(urls[0])
.build();
Response responses = null;
try {
responses = client.newCall(request).execute();
} catch (IOException e) {
e.printStackTrace();
}
String jsonData = responses.body().string();
JSONObject Jobject = new JSONObject(jsonData);
JSONArray Jarray = Jobject.getJSONArray("employees");
//define the strings that will temporary store the data
String fname,lname;
//get the length of the json array
int limit = Jarray.length()
//datastore array of size limit
String dataStore[] = new String[limit];
for (int i = 0; i < limit; i++) {
JSONObject object = Jarray.getJSONObject(i);
fname = object.getString("firstName");
lname = object.getString("lastName");
Log.d("JSON DATA", fname + " ## " + lname);
//store the data into the array
dataStore[i] = fname + " ## " + lname;
}
//prove that the data was stored in the array
for (String content ; dataStore ) {
Log.d("ARRAY CONTENT", content);
}
NetworkOnMainThreadExceptionが発生しないように、AsyncTaskまたはSyncAdapter(IntentService)を使用することを忘れないでください
また、build.gradleにokhttpライブラリをインポートします
compile 'com.squareup.okhttp:okhttp:2.4.0'