繁体   English   中英

翻新JSON解析中的IllegalStateException错误

[英]Wrong IllegalStateException in Retrofit JSON parsing

快点,帮我解析JSON。 我总是得到一个对象:

IllegalStateException:应为BEGIN_ARRAY,但在第1行第2列路径$ BEGIN_OBJECT

我尝试解析List<List<String>><List<String>><String>但得到相同的结果。

这是我的JSON:

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

接口:

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;
    }
}

主要:

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());
        }
    });
}

使用这些POJO类

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;
}

}

使用这样的界面...

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

像这样打电话

  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());
        }
    });

注意:-您正在尝试以LIST身份访问,但作为回应,它来了简单的JSON对象

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

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