使用改造2上传视频时的ETIMEDOUT(连接超时)

时间:2017-02-22 05:56:52

标签: java file-upload retrofit2

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

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(连接超时)

任何人都可以解释我为什么会这样,我该如何解决?现在,我正在研究如何关闭连接的解决方案,因为我怀疑它可能是因为未连接的连接。

1 个答案:

答案 0 :(得分:0)

这是因为没有释放连接, 我通过设置

解决了这个问题
response.body().close();