Retrofit2 使用Jsoniter作为Converter

Jsoniter是一个json解析器,详见Jsoniter官网。

Retrofit2要使用Jsoniter解析json,需要自定义Converter,详见Jsoniter-Retrofit_Demo。

使用方法:

1、添加依赖:compile'com.squareup.retrofit2:retrofit:2.3.0'

                      compile'com.jsoniter:jsoniter:0.9.15'

                      compile'com.jeepc.retrofit2:jsoniterconverter:2.3.0'

2、代码实现:Retrofit retrofit =newRetrofit.Builder()

                     .addConverterFactory(JsoniterConverterFactory.create())

                     .build();

有什么不足之处欢迎批评指正。

你可能感兴趣的:(Retrofit2 使用Jsoniter作为Converter)