У меня есть Модифицированная установить с HttpLoggingInterceptor
как это:Как красиво печатать в дооснащении 2?
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? Спасибо.
EDIT: Обновлен мои библиотеки и до сих пор не работает
Попробовал с последними beta4 и до сих пор не работает. – Schinizer