使用OKHTTP3安装Android上传文件Percentage ProgressBar

时间:2017-06-14 21:06:01

标签: java android okhttp3

有没有人知道如何添加一个进度条,告诉我文件已上传了多少。这是我在下面的代码中设法做的,我已设法从我的手机中选择一个文件,并设法发送它,但问题是,如果我上传一个巨大的文件,我一直在等待不知道什么时候会完成,这就是为什么我需要一个进度条,告诉我有多少已转移到服务器。这是我尝试过不同实现的代码,但无济于事。

public class MainActivity extends AppCompatActivity {
private Button fileUploadBtn;
protected static String IPADDRESS = "http://10.42.0.1/hugefile/save_file.php";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    fileUploadBtn = (Button) findViewById(R.id.btnFileUpload);
    pickFile();

}

private void pickFile() {

    fileUploadBtn.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            new MaterialFilePicker()
                    .withActivity(MainActivity.this)
                    .withRequestCode(10).start();
        }
    });
}

ProgressDialog progress;

@Override
protected void onActivityResult(int requestCode, int resultCode, final Intent data) {
    progress = new ProgressDialog(MainActivity.this);
    progress.setTitle("Uploading File(s)");
    progress.setMessage("Please wait...");
    progress.show();
    if (requestCode == 10 && resultCode == RESULT_OK) {

        Thread t = new Thread(new Runnable() {
            @Override
            public void run() {

                File f = new File(data.getStringExtra(FilePickerActivity.RESULT_FILE_PATH));

                String content_type = getMimeType(f.getPath());
                String file_path = f.getAbsolutePath();

                OkHttpClient client = new OkHttpClient();
                RequestBody file_body = RequestBody.create(MediaType.parse(content_type), f);
                RequestBody request_body = new MultipartBody.Builder()
                        .setType(MultipartBody.FORM)
                        .addFormDataPart("type", content_type)
                        .addFormDataPart("uploaded_file", file_path.substring(file_path.lastIndexOf("/") + 1), file_body).build();

                Request request = new Request.Builder()
                        .url(IPADDRESS)
                        .post(request_body)
                        .build();
                try {

                    Response response = client.newCall(request).execute();
                    Log.d("Server response", response.body().string());
                    if (!response.isSuccessful()) {
                        throw new IOException("Error : " + response);
                    }
                    progress.dismiss();
                } catch (IOException e) {
                    e.printStackTrace();

                }
            }
        });
        t.start();

    }
}

private String getMimeType(String path) {
    String extension = MimeTypeMap.getFileExtensionFromUrl(path);
    return MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension);

}

}

2 个答案:

答案 0 :(得分:1)

我认为您的整个解决方案需要一些更正。暂停用户某些对话框是不好的做法,如果配置更改,您的上传进度也会丢失。而新线程我现在真的太粗暴了。首先,我建议您在Service或IntentService中移动上传过程的代码。您可以在通知中显示进度和状态,然后通过对话框或小吃栏等提醒用户。其次,没有直接的方法来监控上传进度。通常最好的方法是实现自定义RequestBody,它将通知通过监听器上传的字节。请转到Tracking progress of multipart file upload using OKHTTP 然后,您可以使用广播或事件总线来发布进度。

答案 1 :(得分:1)

我设法通过一些改进来解决它,这里是遇到同样问题的人的解决方案的链接 https://github.com/MakuSimz/Android-Multipart-Upload-with-Progress