gpt4 book ai didi

java - ArrayIndexOutOfBoundsException - 改造 2.4.0 调用

转载 作者:行者123 更新时间:2023-11-29 23:35:42 25 4
gpt4 key购买 nike

我正在尝试使用 retrofit 调用 POST。它在某些设备上运行良好,但在操作系统版本 6.0.1Nexus 5 上崩溃。

但是现在我遇到了异常

art/runtime/thread.cc:1344] Throwing new exception 'length=1903; index=3147' with unexpected pending exception: java.lang.ArrayIndexOutOfBoundsException: length=1903; index=3147

我知道在 SO 上有很多问题,但对我没有任何帮助。我按照给定的帖子尝试了一切,比如 this , thisthis等等。有些人通过禁用Instant Run 解决了这个问题。但这对我不起作用。

我正在使用这些依赖项进行改造:

implementation 'com.squareup.retrofit2:retrofit:2.4.0'
implementation 'com.squareup.okhttp3:okhttp:3.10.0'
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'

这是我的项目级 gradle 文件:

classpath 'com.android.tools.build:gradle:3.1.4'
classpath 'com.google.gms:google-services:4.0.1'

这是我的 API 调用,我得到了 ArrayIndexOutOfBoundsException

APIClient.getAPIService().getEffects(Constants.apiKey).enqueue(//callback);

这是调用已声明的我的 API 接口(interface):

@FormUrlEncoded
@POST("/getEffects")
Call<GetEffectResp> getEffects(@Field("apikey") String apikey);

如果有人解决了这个问题,请帮我弄清楚。

TIA

最佳答案

我也遇到了同样的问题。在我的例子中,我使用 JsonElement 而不是 Pojo 类 来解决它。

下面是回调。你可以试试看...

APIClient.getAPIService().getEffectsInternal(Constants.apiKey).enqueue(new Callback<JsonElement>() {
@Override
public void onResponse(Call<JsonElement> call, Response<JsonElement> response) {

Log.e("",""+response.body());


}

@Override
public void onFailure(Call<JsonElement> call, Throwable t) {

}
});

希望对你有用。

关于java - ArrayIndexOutOfBoundsException - 改造 2.4.0 调用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52273155/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com