我正在使用retrofit1旧式
@GET("/loginUser")
public Call<Response> login(
@Query("email") String email,
@Query("password") String password,
Callback<Response> callback);
现在我不想获得“User”类,但我想得到一个String响应。
以前我们使用的是“响应”但是在retrofit2中没有响应,
如何在不使用任何json解析的情况下从服务器获取字符串响应或全身响应?
答案 0 :(得分:15)
创建此类
import java.io.IOException;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import okhttp3.MediaType;
import okhttp3.RequestBody;
import okhttp3.ResponseBody;
import retrofit2.Converter;
import retrofit2.Retrofit;
public class ToStringConverterFactory extends Converter.Factory {
private static final MediaType MEDIA_TYPE = MediaType.parse("text/plain");
@Override
public Converter<ResponseBody, ?> responseBodyConverter(Type type, Annotation[] annotations, Retrofit retrofit) {
if (String.class.equals(type)) {
return new Converter<ResponseBody, String>() {
@Override
public String convert(ResponseBody value) throws IOException {
return value.string();
}
};
}
return null;
}
@Override
public Converter<?, RequestBody> requestBodyConverter(Type type, Annotation[] annotations, Retrofit retrofit) {
if (String.class.equals(type)) {
return new Converter<String, RequestBody>() {
@Override
public RequestBody convert(String value) throws IOException {
return RequestBody.create(MEDIA_TYPE, value);
}
};
}
return null;
}
}
与
一起使用Retrofit retrofit = new Retrofit.Builder()
.addConverterFactory(new ToStringConverterFactory())
.build();
修改强> 你必须将其定义为
@GET("/loginUser")
public Call<String> login(
@Query("email") String email,
@Query("password") String password);
retrofit2中不支持回调,因此您必须将其删除。要使其异步,您必须执行
Call<String> call = service.login(username, password);
call.enqueue(new Callback<String>() {}
编辑以上代码适用于retrofit2 beta 3.对于改装:2.1.0,您必须创建ToStringConverterFactory作为 -
import java.io.IOException;
import java.lang.annotation.Annotation;
import java.lang.reflect.Type;
import okhttp3.MediaType;
import okhttp3.RequestBody;
import okhttp3.ResponseBody;
import retrofit2.Converter;
import retrofit2.Retrofit;
public class ToStringConverterFactory extends Converter.Factory {
private static final MediaType MEDIA_TYPE = MediaType.parse("text/plain");
@Override
public Converter<ResponseBody, ?> responseBodyConverter(Type type, Annotation[] annotations, Retrofit retrofit) {
if (String.class.equals(type)) {
return new Converter<ResponseBody, String>() {
@Override
public String convert(ResponseBody value) throws IOException {
return value.string();
}
};
}
return null;
}
@Override
public Converter<?, RequestBody> requestBodyConverter(Type type, Annotation[] parameterAnnotations,
Annotation[] methodAnnotations, Retrofit retrofit) {
if (String.class.equals(type)) {
return new Converter<String, RequestBody>() {
@Override
public RequestBody convert(String value) throws IOException {
return RequestBody.create(MEDIA_TYPE, value);
}
};
}
return null;
}
}
好知道:如果您想拥有多个转换器(例如上面显示的String转换器以及GSON转换器):
确保首先指定专用转换器(例如String转换器)和常规转换器(如Gson)!
转换器将按其添加的顺序调用,如果转换器消耗了响应,则不会调用以下转换器。
答案 1 :(得分:1)
Retrofit 2.0.0-beta3添加了一个转换器 - 标量模块,它提供了一个Converter.Factory,用于将String,8种基本类型和8种盒装基元类型转换为text / plain主体。在普通转换器之前安装它,以避免将这些简单的标量通过,例如,JSON转换器。
答案 2 :(得分:0)
Retrofit retrofit = new Retrofit.Builder()
.baseUrl(API_BASE_URL)
.client(getClient())
.addConverterFactory(ScalarsConverterFactory.create())
.addConverterFactory(GsonConverterFactory.create())
.build();
GsonConverterFactory上方的ScalarsConverterFactory