繁体   English   中英

使用翻新2上传视频时ETIMEDOUT(连接超时)

[英]ETIMEDOUT (Connection timed out) when uploading video using retrofit 2

我正在使用此代码将我的视频上传到改造服务器

private String uploadVideoToServer(String pathToVideoFile) {
    Log.v("test_get", "get the file");
    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl("http://xxx.xxx.xxx.xxx:xxxx/")
            .addConverterFactory(GsonConverterFactory.create())
            .build();

    SmileVideoAPI service = retrofit.create(SmileVideoAPI.class);
    MediaType MEDIA_TYPE = MediaType.parse("multipart/form-data");
    File videoFile = new File(pathToVideoFile);
    //RequestBody videoBody = RequestBody.create(MEDIA_TYPE, videoFile);
    ProgressRequestBody videoBody = new ProgressRequestBody(videoFile, this);
    MultipartBody.Part vFile = MultipartBody.Part.createFormData("file", videoFile.getName(), videoBody);
    RequestBody description = createPartFromString("desc");
    Log.v("test_get", "before uploading");
    Call<ResponseBody> call = service.uploadVideo(description, vFile);
    Log.v("test_get", "after uploading");
    call.enqueue(new Callback<ResponseBody>() {
        @Override
        public void onResponse(Call<ResponseBody> call, Response<ResponseBody> response) {
            if (response.isSuccessful()) {
                Log.i("mok", "S");
                ResponseBody rb = response.body();
                Log.i("mok", rb.toString());
                mProgress.setProgress(100);
                Intent intent = new Intent(UploadActivity.this, UploadCompleteActivity.class);
                startActivity(intent);
                finish();
            } else {
                Log.i("mok", "F");
                ResponseBody rb = response.errorBody();
                Log.i("mok", rb.toString());
            }
        }

        @Override
        public void onFailure(Call<ResponseBody> call, Throwable t) {
            t.printStackTrace();
            Log.i("mok", t.getCause() + "");
            Log.i("mok", "T");
            Toast.makeText(getApplicationContext(), "Upload fail", Toast.LENGTH_SHORT).show();
            Intent intent = new Intent(UploadActivity.this, MainActivity.class);
            startActivity(intent);
            finish();
        }
    });
    return msg;
}

第一次建立连接时,它会上传视频,但是,有时会抛出以下错误。

libcore.io.ErrnoException:isConnected失败:ETIMEDOUT(连接超时)

谁能解释我为什么会这样,我该如何解决? 目前,我正在研究如何关闭连接的解决方案,因为我怀疑这可能是由于未关闭的连接所致。

这是由于未释放连接导致的,我通过放置一个

response.body().close(); 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM