3

我正在使用retrofit1 old style

@GET("/loginUser")
    public Call<Response> login(
            @Query("email") String email,
            @Query("password") String password,
            Callback<Response> callback);

现在我不想得到“用户”类,但是我想得到一个字符串响应。

以前我们使用“响应”但是改造2中没有响应,

如何在不使用任何 json 解析的情况下从服务器获取字符串响应或全身响应?

4

3 回答 3

17

创建这个类

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。对于retrofit: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;
    }
}

很高兴知道:如果您想要拥有多个转换器(例如,如上所示的字符串转换器和 GSON 转换器):
确保您首先指定专用转换器(例如字符串转换器)和通用转换器(如 Gson)最后!

转换器将按添加的顺序调用,如果转换器消耗了响应,则不会调用后续转换器。

于 2016-02-20T06:39:23.210 回答
1

Retrofit 2.0.0-beta3 添加了一个converter-scalars 模块,提供了一个Converter.Factory 用于将String、8 种原始类型和8 种盒装原始类型转换为文本/纯文本。在您的普通转换器之前安装它,以避免将这些简单的标量传递给例如 JSON 转换器。

于 2016-04-05T11:03:05.243 回答
0
        Retrofit retrofit = new Retrofit.Builder()
                .baseUrl(API_BASE_URL)
                .client(getClient())
                .addConverterFactory(ScalarsConverterFactory.create())
                .addConverterFactory(GsonConverterFactory.create())
                .build();

ScalarsConverterFactory 高于 GsonConverterFactory

于 2018-07-27T07:53:28.757 回答