【问题标题】:Android : Unable to upload multipart Image file using Retrofit 2.0.0 beta 2Android:无法使用 Retrofit 2.0.0 beta 2 上传多部分图像文件
【发布时间】:2016-01-24 00:23:26
【问题描述】:

您好,我无法使用改造 2.0.0-beta2 上传图片。 它给了我“图像丢失”错误。虽然我检查了该文件是否存在于系统中,并且如果我在图像视图中显示它也可以正确显示。

需要上传的网址: http://mywebsite.com/signature/upload/

所以我的 BASE_URL 是 = http://mywebsite.com/

我的 .gradle 文件有这个:

compile 'com.squareup.retrofit:retrofit:2.0.0-beta2'
compile 'com.squareup.retrofit:converter-gson:2.0.0-beta2'
compile 'com.squareup.okhttp:logging-interceptor:2.6.0'

ServiveGenerator.java 类是

public class ServiceGenerator {

public static final String API_BASE_URL = Urls.URL_BASE;

private static OkHttpClient httpClient = new OkHttpClient();



private static Retrofit.Builder builder =
        new Retrofit.Builder()
                .baseUrl(API_BASE_URL)
                .addConverterFactory(GsonConverterFactory.create());

public static <S> S createService(Class<S> serviceClass) {
    Retrofit retrofit = builder.client(httpClient).build();
    HttpLoggingInterceptor interceptor = new HttpLoggingInterceptor();
    interceptor.setLevel(HttpLoggingInterceptor.Level.BODY);
    httpClient.interceptors().add(interceptor);
    return retrofit.create(serviceClass);
}

}

UploadService.java 类是

public interface UploadService {
@Multipart
@POST("/signature/upload/")  
// Tried to change this to "/signature/upload" as well (no slash in end)
// then gives Method not allowed error"
Call<String> upload(
        @Part("image") RequestBody file,
        @Part("image_name") String name);
}

最后在我的 android 活动中

// photoFile is the file, checked that it exist in system and 
// path is also correct

public void uploadFileToServer() {
    UploadService service =
            ServiceGenerator.createService(UploadService.class);

    String name = "xyz.jpg";

    RequestBody requestBody =
            RequestBody.create(MediaType.parse("multipart/form-data"), photoFile);

    Call<String> call = service.upload(requestBody, name);
    call.enqueue(new Callback<String>() {
        @Override
        public void onResponse(Response<String> response, Retrofit retrofit) {

            Log.v("Upload", "success");
        }

        @Override
        public void onFailure(Throwable t) {
            Log.e("Upload", t.getMessage());
        }
    });
}

所以我从活动中获得成功日志“成功”,但服务器文件不存在,使用 Postman,我尝试手动上传表单数据中的图像,正确上传。

【问题讨论】:

标签: android retrofit retrofit2


【解决方案1】:

几天前我遇到了类似的问题。这是我的工作代码。

首先你必须定义接口。不添加内容类型标头非常重要。 在下面你会看到@Part("picture\";,“图片”是后端期望的相应名称(在我的例子中)。因此,您必须更改此名称以使其与您的后端一起使用。 filename=\"image\" 只是定义了您上传的图像的名称。 就我而言,该方法位于“DiaryService.java”中。

    @Multipart
    @POST("signature/upload")
    public Call<Void> addImageElementToDiary(@Part("picture\"; filename=\"image\" ") RequestBody picture,
                                             @Part("sort") RequestBody sort);

现在你可以调用上面定义的Service了。正确解析 Mediatype 很重要。您使用了“multipart/form-data”,这在我的情况下不起作用。您应该看看以下 Mediatypes。

    File file = new File(((CreateDiaryImage) element).getImagePath());

        RequestBody sort = RequestBody.create(MediaType.parse("text/plain"), element.getSort() + "");

        RequestBody requestBody =
                RequestBody.create(MediaType.parse("image/*"), file);

        Call<Void> call = diaryService.addImageElementToDiary(requestBody, sort);
        call.enqueue(new Callback<Void>() {
            @Override
            public void onResponse(Response<Void> response, Retrofit retrofit) {
                Log.v("Upload", "success");
            }

            @Override
            public void onFailure(Throwable t) {
                Log.e("Upload", t.getMessage());
            }
        });

【讨论】:

猜你喜欢
  • 2018-07-04
  • 2015-02-22
  • 1970-01-01
  • 2018-04-11
  • 1970-01-01
  • 1970-01-01
  • 2016-09-04
  • 2016-02-07
  • 2014-08-01
相关资源
最近更新 更多