gpt4 book ai didi

android - 如何在 Retrofit 2 中漂亮地打印?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:56:47 25 4
gpt4 key购买 nike

我用 HttpLoggingInterceptor 进行改造,如下所示:

Gson gson = new GsonBuilder()
.setDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ")
.setPrettyPrinting() // Pretty print
.create();

HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
OkHttpClient client = new OkHttpClient.Builder()
.addInterceptor(interceptor)
.build();

Retrofit retrofit = new Retrofit.Builder()
.baseUrl(BASE_URL)
.addConverterFactory(GsonConverterFactory.create(gson))
.client(client)
.build();

在我的 Gson 实例上,我执行了 setPrettyPrinting 并且我仍然得到紧凑的 JSON 输出。这是我的图书馆。

compile 'com.google.code.gson:gson:2.5'
compile 'com.squareup.retrofit2:converter-gson:2.0.0-beta4'
compile 'com.squareup.okhttp3:logging-interceptor:3.0.1'

compile 'com.squareup.retrofit2:retrofit:2.0.0-beta4'
compile 'com.squareup.okhttp3:okhttp:3.0.1'

如何使用 Retrofit 2 实现 pretty-print 效果?谢谢。

编辑:更新了我的库,但仍然没有用

最佳答案

受到 Tanapruk 的回答的启发,这就是我所做的,以使其适用于我的 retrofit (2.1.0) 和 okhttp.logging-interceptor (3.8.1) 版本。

此版本适用于打印 JSON 对象和数组。

class ApiLogger : HttpLoggingInterceptor.Logger {
override fun log(message: String) {
val logName = "ApiLogger"
if (message.startsWith("{") || message.startsWith("[")) {
try {
val prettyPrintJson = GsonBuilder().setPrettyPrinting()
.create().toJson(JsonParser().parse(message))
Log.d(logName, prettyPrintJson)
} catch (m: JsonSyntaxException) {
Log.d(logName, message)
}
} else {
Log.d(logName, message)
return
}
}
}

在客户端:

val httpClientBuilder = OkHttpClient.Builder()
val httpLoggingInterceptor = HttpLoggingInterceptor(ApiLogger())
httpLoggingInterceptor.level = Level.BODY
httpClientBuilder.addInterceptor(httpLoggingInterceptor)

关于android - 如何在 Retrofit 2 中漂亮地打印?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35006664/

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