web-dev-qa-db-ja.com

Retrofit2を使用してファイルをアップロード中にエラーが発生しました

Retrofit 2を使用してファイル(画像)をサーバーにアップロードしようとしています。私はそれに従っています tutorial 最初はかなり簡単に見えますが、私の場合は機能しませんでした...

API関数を呼び出すと、常に次のエラーが発生します。

W/System.err: Java.lang.ArrayIndexOutOfBoundsException: length=1; index=1
W/System.err:     at retrofit2.ServiceMethod$Builder.build(ServiceMethod.Java:190)
W/System.err:     at retrofit2.Retrofit.loadServiceMethod(Retrofit.Java:166)
W/System.err:     at retrofit2.Retrofit$1.invoke(Retrofit.Java:145)
W/System.err:     at Java.lang.reflect.Proxy.invoke(Proxy.Java:393)
W/System.err:     at com.plante.Android.cobalt.fragment.FragmentIncidentPlan.uploadFile(FragmentIncidentPlan.Java:575)

これが私のAPI呼び出しです:

@Multipart
@POST(Constants.URL_UPLOAD)
Call<ResponseBody> upload(@Part RequestBody description,
                          @Part MultipartBody.Part file);

ファイルをアップロードするために使用する方法は次のとおりです:

private void uploadFile(String path) {
    // create upload service client

    // use the FileUtils to get the actual file by uri
    File file = new File(path);
    Log.e(TAG, file.getAbsolutePath());

    // create RequestBody instance from file
    RequestBody requestFile =
            RequestBody.create(MediaType.parse("multipart/form-data"), file);

    // MultipartBody.Part is used to send also the actual file name
    MultipartBody.Part body =
            MultipartBody.Part.createFormData("picture", file.getName(), requestFile);

    // add another part within the multipart request
    String descriptionString = "hello, this is description speaking";
    RequestBody description =
            RequestBody.create(
                    MediaType.parse("multipart/form-data"), descriptionString);

    // finally, execute the request
    Call<ResponseBody> call = cobaltServices.upload(description, body);
    call.enqueue(new Callback<ResponseBody>() {
        @Override
        public void onResponse(Call<ResponseBody> call,
                               Response<ResponseBody> response) {
            Log.v("Upload", "success");
        }

        @Override
        public void onFailure(Call<ResponseBody> call, Throwable t) {
            Log.e("Upload error:", t.getMessage());
        }
    });
}
9
Jaythaking

このリンクを使用して問題を修正します: https://github.com/square/retrofit/issues/1063#issuecomment-145920568

これが問題の解決策です。

@Multipart
@POST ("/api/Events/editevent")
Call<Event> editEvent (@PartMap Map<String, RequestBody> params);

私はそれを次のように呼びます。

Map<String, RequestBody> map = new HashMap<>();
map.put("Id", AZUtils.toRequestBody(eventId));
map.put("Name", AZUtils.toRequestBody(titleView.getValue()));

if (imageUri != null) {
      File file = new File(imageUri.getPath());
      RequestBody fileBody = RequestBody.create(MediaType.parse("image/png"), file);
      map.put("file\"; filename=\"pp.png\"", fileBody);
}

Call<Event> call = api.editEvent(map);
call.enqueue(new Callback<Event>() { }

ToRequestBodyメソッドは、文字列をRequestBodyに変換するだけです。

public static RequestBody toRequestBody (String value) {
    RequestBody body = RequestBody.create(MediaType.parse("text/plain"), value);
    return body ;
}
9
Jaythaking

例外は、最初の@Part注釈に名前は必要ありません。

@Multipart
@POST(Constants.URL_UPLOAD)
Call<ResponseBody> upload(@Part RequestBody description,
                          @Part MultipartBody.Part file);
9
Exaqt