Solution : C'était une erreur de mon côté.
La bonne façon est response.body (). String () autre que response.body.toString ()
En utilisant le servlet Jetty, l’URL ishttp://172.16.10.126:8789/test/path/jsonpage
, chaque fois que cette URL sera demandée, elle sera renvoyée
{"employees":[
{"firstName":"John", "lastName":"Doe"},
{"firstName":"Anna", "lastName":"Smith"},
{"firstName":"Peter", "lastName":"Jones"}
]}
Il apparaît lorsque vous tapez l'URL dans un navigateur, malheureusement, il affiche une sorte d'adresse mémoire autre que la chaîne json lorsque je demande avec Okhttp
.
TestActivity﹕ com.squareup.okhttp.internal.http.RealResponseBody@537a7f84
Le code Okhttp en utilisant:
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();
}
Quelqu'un peut-il aider?
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);
}
}
Exemple ajouter à vos colonnes:
JCol employees = new employees();
colums.Setid(object.getInt("firstName"));
columnlist.add(lastName);
Je suis aussi confronté au même problème
utilisez ce code:
// notice string() call
String resStr = response.body().string().toString();
JSONObject json = new JSONObject(resStr);
ça marche vraiment
Comme je l'ai observé dans mon code. Si une fois que la valeur est extraite du corps de Response, elle devient vide.
String str = response.body().string(); // {response:[]}
String str1 = response.body().string(); // BLANK
Donc, je crois qu'après avoir récupéré une fois la valeur du corps, elle devient vide.
Suggestion: stockez-le dans String, qui peut être utilisé plusieurs fois.
J'espère que vous avez réussi à obtenir les données JSON de la chaîne JSON.
Eh bien, je pense que cela sera utile
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);
}
N'oubliez pas d'utiliser AsyncTask ou SyncAdapter (IntentService) pour empêcher l'obtention d'une exception NetworkOnMainThreadException.
Importez également la bibliothèque okhttp dans votre build.gradle
compile 'com.squareup.okhttp:okhttp:2.4.0'