如何从不带键的翻新JSON获取响应

时间:2019-09-03 06:56:21

标签: android json retrofit2

在我的retrofit JSON响应中有一个single value没有任何key and type。在我的JSON中,我根据需要传递了三元素,现在我得到如下所示的响应。那么我该如何获取该回复?

我的JSON of Response看起来像-

成功

这是我的JSON代码-

private void ASSIGN_DATA() {

    ApiInterface apiInterface=ApiClient.getClient().create(ApiInterface.class);
    Call<ArrayList<price_get_set>> call=apiInterface.assignItemToJson(select_date.getText().toString(),
                id,item_list);

    call.enqueue(new Callback<ArrayList<price_get_set>>() {

        @RequiresApi(api = Build.VERSION_CODES.JELLY_BEAN)
        @Override
        public void onResponse(Call<ArrayList<price_get_set>> call, Response<ArrayList<price_get_set>> response) {
           progress.dismiss();

            Log.d("URL::",response.toString());

           Log.d("new URL::",response.body().toString());

            try {
                if (response.isSuccessful()) {
                    Toast.makeText(Items_List.this, "Successs", Toast.LENGTH_SHORT).show();
                    Intent intent = new Intent(Items_List.this, Item_Accept_Reject_List.class);
                    startActivity(intent);
                }
                else
                    Toast.makeText(Items_List.this, "Something went Wrong", Toast.LENGTH_SHORT).show();
                }

            catch (Exception ex){
                Log.e("ERROR::",ex.getMessage());
            }
        }

        @Override
        public void onFailure(Call<ArrayList<price_get_set>> call, Throwable t) {
           progress.dismiss();
           Log.i("FAILURE ERROR::",t.getMessage());
        }
    });
}

1 个答案:

答案 0 :(得分:0)

您可以使用 response.body().string() 。 它将您的响应转换为String。

示例,您必须在API的 onResponse 方法上使用此代码。

@Override
public void onResponse(Response<ResponseBody> response) {
    try {
        String responseString = response.body().toString();//This a response as string
        Log.d("Response : " + responseString);
    } catch (IOException e) {
        e.printStackTrace();
    }
}