Я получаю эту ошибку при разборе JSON. Может кто-нибудь помочь мне решить эту проблему.
{
"website": [
"http://www.example.com",
"https://buy.example.com"
],
"number": [
"4546",
"54256456"
],
"email": [
"exam@gmail.com",
"example@gmail.com"
],
"address": [
"any adddress here",
"Address 2"
]
}
Кто-нибудь поможет мне, как именно разобрать этот JSON ...
код анализа Json
String JSON_STRING = response.body().string();
Log.e("json_string", JSON_STRING.toString());
//Toast.makeText( getApplicationContext(), "Response : "+JSON_STRING, Toast.LENGTH_LONG ).show();
JSONObject object = new JSONObject( JSON_STRING );
JSONArray jsonArray = object.getJSONArray( "website" );
for (int i=0; i<jsonArray.length(); i++)
{
JSONObject website = jsonArray.getJSONObject( i );
Log.e("website", website.toString());
}