簡體   English   中英

使用改造版android上傳文件?

[英]File upload using retrofit android?

我正在嘗試通過分段上傳視頻文件,但出現以下錯誤

Response{protocol=http/1.1, code=405, message=Method Not Allowed, url=serverurl/Upload/Videos/}

這是我的文件上傳代碼

void uploadVideo(String videoPath) {
    dialog.show();
    File videoFile = new File(videoPath);
    RequestBody requestFile = RequestBody.create(MediaType.parse("multipart/form-data"), videoPath);
    MultipartBody.Part vFile = MultipartBody.Part.createFormData("file", videoFile.getName(), requestFile);

    apiCall.uploadVideoToServer(presenter.getUserInfo().getUploadVideoPath(), vFile).enqueue(new Callback<String>() {
        @Override
        public void onResponse(Call<String> call, Response<String> response) {
            dialog.dismiss();
        }

        @Override
        public void onFailure(Call<String> call, Throwable t) {
            dialog.dismiss();
        }
    });

}

這是我將文件上傳到的路徑

http://serverurl.com/Upload/Videos/

有人可以告訴我我的代碼有什么問題嗎?

Retrofir API接口

    @Multipart
@POST
Call<String> uploadVideoToServer(@Url String url, @Part MultipartBody.Part video);

在您的api服務界面中:

    @Multipart
    @POST("Upload/Videos") // *** DONT FORGET UR END POINT HERE ***
    Call<urmodel> uploadVideoToServer(@PartMap Map<String, RequestBody> map);

並編寫一種上傳ur視頻文件的方法,如下所示:

private void uploadVideoToServer(String path) {
        File videoFile = new File(path);
        if (videoFile.exists()) {
            //create request body
            Map<String, RequestBody> map = new HashMap<>();
            RequestBody requestBody = RequestBody.create(MediaType.parse("video/*"), videoFile);
            map.put("video\"; filename=\"" + videoFile.getName() + "\"", requestBody);
            //make call
            Call<urmodel> call = mTService.uploadVideoToServer(map);
            call.enqueue(new Callback<urmodel>() {
                @Override
                public void onResponse(Call<urmodel> call, Response<urmodel> response) {
                    if (response.isSuccess()) {
                        // DO SOMETHING
                    } else {
                        // DO SOMETHING
                    }
                }

                @Override
                public void onFailure(Call<urmodel> call, Throwable t) {
                    //occur when fail to deserialize || no network connection || server unavailable
                    Toast.makeText(getBaseContext(), "Fail it >> " + t.getMessage(), Toast.LENGTH_LONG).show();
                }
            });
        } else {
            Toast.makeText(getBaseContext(), "can not upload file since the file is not exist :|", Toast.LENGTH_SHORT).show();
        }
    }

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM