gson Retrofit 2 和Kotlin:未反序列化问题:非法参数异常:封闭的

oxalkeyp  于 2022-11-06  发布在  Kotlin
关注(0)|答案(1)|浏览(129)

大家好,我是新来的,我正在使用

implementation 'com.squareup.retrofit2:retrofit:2.6.1'
// JSON Parsing
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'com.squareup.retrofit2:converter-gson:2.1.0'

我正在进行一个API调用来登录。调用成功(我可以在我添加的拦截器中看到200响应),但我仍然在翻新中得到onFailure回调,java.lang.IllegalStateException: closed是可抛出的。我在Retrofit类中添加了一些断点,看起来它在解析我的响应时出现。我还使用了Kotlin
下面是我的数据类:

data class LoginResponse(
    @SerializedName("payload") @Expose val payload: Payload,
    @SerializedName("status") @Expose val status: Int
)
data class Payload(
    @SerializedName("access_token") @Expose val access_token: String?,
    @SerializedName("expires_at") @Expose val expires_at: String?,
    @SerializedName("name") @Expose val name: String?,
    @SerializedName("org_name") @Expose val org_name: String?,
    @SerializedName("request_at") @Expose val request_at: String,
    @SerializedName("status_message") @Expose val status_message: String
)

下面是我创建改造示例的方法:

private val okHttpClient = OkHttpClient.Builder().addInterceptor(Interceptor {
    Log.w("Retrofit@Request", it.request().toString())
    val requestBuilder = it.request().newBuilder()
    requestBuilder.header("Content-Type", "application/json")
    val response = it.proceed(it.request())
    Log.w("Retrofit@Response", response.body()!!.string())  //correct 200 response with json is printed out here
    return@Interceptor response
}).build()

val retrofitInstance: Retrofit
    get() {
        if (retrofit == null) {
            retrofit = Retrofit.Builder()
                .baseUrl(BASE_URL)
                .client(okHttpClient)
                .addConverterFactory(GsonConverterFactory.create())
                .build()
        }
        return retrofit!!
    }

我是这样打电话的:

loginService.login(logindata).enqueue(object : Callback<LoginResponse> {
                override fun onFailure(call: Call<LoginResponse>, t: Throwable) {
                    Log.d(TAG, "Login failure "+t) //this is getting invoked with java.lang.IllegalStateException: closed
                }

                override fun onResponse(
                    call: Call<LoginResponse>,
                    response: Response<LoginResponse>
                ) {
                    onLoginState.value = true
                }
            })

我花了很多时间试图弄清楚发生了什么,找不到我在这里做错了什么。我也试着用莫希替换GSON,这给了我同样的错误。请帮助我弄清楚这里的问题。
先谢谢你。

brtdzjyr

brtdzjyr1#

我不知道这是否有帮助,但请尝试读取this thread,并尝试删除日志Log.w("Retrofit@Response", response.body()!!.string())或替换为该线程中的提示

// Don't try to use response.body.string() directly. Just using like below:
ResponseBody responseBody = response.body();
String content = responseBody.string();
// Do something with "content" variable

理由:body的string()在内存中存放到变量content中,所以我们不需要关心状态是否关闭。

相关问题