0
私はRetrofit Mulitpart Androidで画像をアップロードしようとしています。しかし、私はまだ私のアプリのエラーを取得します。Android - Multipart Retrofitで画像をアップロードできない、またはクラッシュする
これは
private final int SELECT_PHOTO = 1;
private void startGallery() {
Intent photoPickerIntent = new Intent(Intent.ACTION_PICK);
photoPickerIntent.setType("image/png");
startActivityForResult(photoPickerIntent, SELECT_PHOTO);
}
画像を取得する方法これはonActivityResultであると私はイメージ
@Override
public void onActivityResult(int requestCode, int resultCode, Intent imageReturnedIntent) {
super.onActivityResult(requestCode, resultCode, imageReturnedIntent);
switch (requestCode) {
case SELECT_PHOTO:
if (resultCode == RESULT_OK) {
selectedImage = imageReturnedIntent.getData();
File file = new File(selectedImage.getPath());
RequestBody reqFile = RequestBody.create(okhttp3.MediaType.parse("image/png"), file);
// MultipartBody.Part is used to send also the actual file name
MultipartBody.Part body = MultipartBody.Part.createFormData("DocTyp01", file.getName(), reqFile);
getApi().uploadByCustomer(PrefHelper.getString(PrefKey.TOKEN), "DocTyp01", body)
.observeOn(AndroidSchedulers.mainThread())
.subscribeOn(Schedulers.io())
.subscribe(new Observer<GenericResponse>() {
@Override
public void onCompleted() {
}
@Override
public void onError(Throwable e) {
dismissProgressDialog();
Timber.e(e.getMessage());
}
@Override
public void onNext(GenericResponse response) {
dismissProgressDialog();
if (response.getCode() == 0) {
showSuccessDialog("Saving success", false);
}
}
});
}
}
}
をアップロードする要求の方法は、これはAPIサービス
@Multipart
@POST(PORTAL_URL + "customerDocument/uploadByCustomer")
Observable<GenericResponse> uploadByCustomer(@Part("token") String token,
@Part("type") String type,
@Part MultipartBody.Part requestBodyFile);
ですそして時にはログにエラーが表示されず、APIからの応答もなくなりました。 dエラー。この問題を解決するのを手伝ってください。ありがとう。
あなたはどのようなエラーが出るのですか? – yosriz
apiからの応答が「ファイルが見つかりません」で、デバッガのcontentTypeがnullになっています。私はそれをテストする場合は "DocTyp01"を記入する必要があります。残りのクライアント@yosriz –
エラーのログを添付してください。 – yosriz