Heim > Fragen und Antworten > Hauptteil
怪我咯2017-04-17 17:45:03
我是这样直接获取String的
获取retrofit实例
public static Retrofit GetStringRetrofit(){
Retrofit retrofit = new Retrofit.Builder()
.client(okHttpClientWithBaiduHeader)
.baseUrl(AppConfig.HEFENG_BASE_URL)
.addCallAdapterFactory(RxJavaCallAdapterFactory.create())
.addConverterFactory(ScalarsConverterFactory.create()) //这里不是GsonConvertFactory了
.build();
return retrofit;
}
接口可以直接收String
public interface GetHeWeather {
@GET("weather")
Observable<String> getHeWeather(@Query("city") String city, @Query("key") String key);
}
以下是打的log
实在不行就subString吧。。。