简体   繁体   中英

Wrong IllegalStateException in Retrofit JSON parsing

Pleace, help me to parse JSON. I always get an object:

IllegalStateException: Expected BEGIN_ARRAY but was BEGIN_OBJECT at line 1 column 2 path $

I try to pars List<List<String>> , <List<String>> and <String> but get the same exeption.

Here is my JSON:

{"barcodes":[["1212"],["22222222222"],["22222321321"],["23565233665558488"],["2999300031242"],["6"]]}

Interface:

import java.util.List;
import retrofit2.Call;
import retrofit2.http.GET;

public interface RequestInterface {
    @GET("barcodeinfo?getBarcodes")
    Call<List<List<String>>> getBarcodeList();
}

obj:

public class SingleBarcode {
    final String barcodes;

    public SingleBarcode(String barcodes) {
        this.barcodes = barcodes;
    }
}

main:

void getRetrofitArray() {
    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl(BASE_URL)
            .addConverterFactory(GsonConverterFactory.create())
            .build();

    RequestInterface service = retrofit.create(RequestInterface.class);

    Call<List<List<String>>> call = service.getBarcodeList();

    call.enqueue(new Callback<List<List<String>>>() {

        @Override
        public void onResponse(Call<List<List<String>>> call, Response<List<List<String>>> response) {
            try {
                List<List<String>> BarcodeData = response.body();
                Log.d("MyLog", BarcodeData.size()+"");
            } catch (Exception e) {
                Log.d("MyLog", "There is an error");
                e.printStackTrace();
            }
        }

        @Override
        public void onFailure(Call<List<List<String>>> call, Throwable t) {
            Log.d("MyLog", "error " + t.toString());
        }
    });
}

use these POJO class

public class Result {

@SerializedName("barcodes")
@Expose
private List<List<String>> barcodes = new ArrayList<List<String>>();

/**
* 
* @return
* The barcodes
*/
public List<List<String>> getBarcodes() {
return barcodes;
}

/**
* 
* @param barcodes
* The barcodes
*/
public void setBarcodes(List<List<String>> barcodes) {
this.barcodes = barcodes;
}

}

use interface like this ...

@GET("barcodeinfo?getBarcodes")
    Call<Result> getBarcodeList();

and call like this ....

  Call<Result> call = service.getBarcodeList();

    call.enqueue(new Callback<Result>() {

        @Override
        public void onResponse(Call<Result> call, Response<Result> response) {

        Result r = response.body(); // you can initialize result r variable global if you have out side use of this response

        }

        @Override
        public void onFailure(Call<Result> call, Throwable t) {
            Log.d("MyLog", "error " + t.toString());
        }
    });

NOTE:- You are trying to access as LIST But in response it coming simple JSON OBJECT

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM