【问题标题】:uploading a file with DataOutputStream doesn't display real progress使用 DataOutputStream 上传文件不显示实际进度
【发布时间】:2023-03-04 00:24:01
【问题描述】:

我正在使用带有以下代码的 DataOutputStream 将文件从 android 上传到我的网络服务器:

public class SnapshotUploadTask extends AsyncTask<Object, Integer, Void> {

    private final File file;
    private final ProgressDialog progressDialog;
    private final Activity activity;

    public SnapshotUploadTask(File file, ProgressDialog progressDialog, Activity activity) {
        this.progressDialog = progressDialog;
        this.file = file;
        this.activity = activity;
    }

    @Override
    protected void onPreExecute() {
        progressDialog.setProgress(0);
    }

    @Override
    protected Void doInBackground(Object... arg0) {

        String lineEnd = "\r\n";
        String twoHyphens = "--";
        String boundary = "*****";

        int bytesRead;
        int bytesAvailable;
        int bufferSize;

        byte[] buffer;

        int maxBufferSize = 1 * 512;

        try {

            FileInputStream fileInputStream = new FileInputStream(file);
            URL url = new URL("http://bla.bla.bla/upload");

            HttpURLConnection connection = (HttpURLConnection) url.openConnection();

            connection.setDoInput(true);
            connection.setDoOutput(true);
            connection.setUseCaches(false);

            connection.setRequestMethod("POST");
            connection.setRequestProperty("Connection", "Keep-Alive");
            connection.setRequestProperty("ENCTYPE", "multipart/form-data");
            connection.setRequestProperty("Content-Type", "multipart/form-data;boundary=" + boundary);
            connection.setRequestProperty("uploaded_file", file.getName());

            DataOutputStream dataOutputStream = new DataOutputStream(connection.getOutputStream());

            dataOutputStream.writeBytes(twoHyphens + boundary + lineEnd);
            dataOutputStream.writeBytes("Content-Disposition: form-data; name=\"uploaded_file\";filename=\"" + file.getName() + "\"" + lineEnd);

            dataOutputStream.writeBytes(lineEnd);

            bytesAvailable = fileInputStream.available();
            final int hundredPercent = bytesAvailable;
            progressDialog.setMax(hundredPercent);

            bufferSize = Math.min(bytesAvailable, maxBufferSize);
            buffer = new byte[bufferSize];

            bytesRead = fileInputStream.read(buffer, 0, bufferSize);

            while (bytesRead > 0) {
                dataOutputStream.write(buffer, 0, bufferSize);
                bytesAvailable = fileInputStream.available();
                bufferSize = Math.min(bytesAvailable, maxBufferSize);
                bytesRead = fileInputStream.read(buffer, 0, bufferSize);

                final int restBytes = bytesAvailable;
                final int uploadedBytes = hundredPercent - restBytes;

                activity.runOnUiThread(new Runnable() {
                    @Override
                    public void run() {
                        progressDialog.setProgress((int) uploadedBytes);
                        if (restBytes <= 0) {
                            progressDialog.setMessage(activity.getString(R.string.camera_uploading_done));
                        }
                    }
                });
             }

            dataOutputStream.writeBytes(lineEnd);
            dataOutputStream.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);

            int serverResponseCode = connection.getResponseCode();
            String serverResponseMessage = connection.getResponseMessage();

            if (serverResponseCode == 200) {
                progressDialog.dismiss();
            }

            fileInputStream.close();
            dataOutputStream.flush();
            dataOutputStream.close();

        } catch (Exception e) {
            progressDialog.dismiss();
        }

        return null;
    }

    @Override
    protected void onPostExecute(Void result) {
        progressDialog.dismiss();
    }
}

现在发生的情况是,我在将一定数量的字节写入 OutputStream 后立即更新我的 progressDialog,这导致 progressDialog 在服务器实际接收到数据之前达到 100%。

只有到connection.getResponseCode();时才知道传输何时完成

我想要的是在服务器实际接收到数据块时更新进度。有没有办法做到这一点?

【问题讨论】:

    标签: java android http stream dataoutputstream


    【解决方案1】:

    您需要注意HttpURLConnection 会缓冲所有输出,除非您设置了固定长度或分块传输模式,您当然应该这样做,而不是自己实现它。它这样做是为了准确地设置 Content-Length 标头。如果您使用其中一种传输模式,则没有缓冲。

    NB 你在滥用available():见Javadoc;而且你在大多数情况下都在写垃圾:

    dataOutputStream.write(buffer, 0, bufferSize);
    

    应该是

    dataOutputStream.write(buffer, 0, bytesRead);
    

    您也不需要在读取循环中摆弄available()。像这样就足够了:

    long total = 0;
    int maxBufferSize = 8192; // at least. 512 is far too small.
    while ((bytesRead = fileInputStream.read(buffer, 0, bufferSize)) > 0) {
        dataOutputStream.write(buffer, 0, bytesRead);
        total += bytesRead;
        final long uploadedBytes = total;
    
        activity.runOnUiThread(new Runnable() {
            @Override
            public void run() {
                progressDialog.setProgress(uploadedBytes);
                    }
            });
        }
    }
    // at this point we are at end of stream
    activity.runOnUiThread(new Runnable() {
        @Override
        public void run() {
    progressDialog.setMessage(activity.getString(R.string.camera_uploading_done));
        }
    }
    

    电子与工程

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2011-03-10
      • 2016-11-14
      • 2013-05-08
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多