android - 显示 JSON 的上传进度

标签 android json androidhttpclient

我有以下代码,我想在这里添加一个功能,以便我知道何时上传了 JSON 内容。 我正在上传 JSON 内容

@Override
protected String doInBackground(JSONObject... params) {
    // TODO Auto-generated method stub
    String state = "";

    HttpPost httpPost = new HttpPost(commentURL);
    StringEntity se = null;
    HttpResponse response = null;
    HttpEntity entity = null;
    DefaultHttpClient httpClient = new DefaultHttpClient();
    InputStream is = null;

    try {
        se = new StringEntity(params[0].toString());
        Log.i("SE", params[0].toString());
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }

    try {
        se.setContentEncoding(new BasicHeader(HTTP.CONTENT_TYPE,
                "application/json"));
        httpPost.setEntity(se);

        try {
            response = httpClient.execute(httpPost);
            Log.i("HTTP POST", httpPost.toString());
            Log.i("RESPONSE", response.toString());
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    } catch (Exception e) {
        e.printStackTrace();
    }

    entity = response.getEntity();

    try {
        is = entity.getContent();
    } catch (IllegalStateException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    try {
        BufferedReader reader = new BufferedReader(new InputStreamReader(
                is, "iso-8859-1"), 8);
        StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        }
        is.close();
        state = sb.toString();
    } catch (Exception e) {
        e.printStackTrace();
    }

    return state;
}

我尝试研究自己,这是我偶然发现 MultipartEntity 的地方,但由于我要通过 POST 上传一个简单的 JSON 内容我没有发现这个有必要使用。那么我如何显示上传过程中取得了多少进展以及 JSON 内容的总大小是多少?我有点想我将不得不使用 StringEntity ?我说得对吗?

最佳答案

启动你的进度条为

private ProgressDialog pDialog;

在 onPreExecute() 上

@Override
        protected void onPreExecute() {
            // TODO Auto-generated method stub
            super.onPreExecute();

            pDialog = new ProgressDialog(getParent());
            pDialog.setMessage("Please wait ...");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(false);
            pDialog.show();
        }

在 onPostExecute() 上

protected void onPostExecute(String result) {
            // TODO Auto-generated method stub
            super.onPostExecute(result);
pDialog.dismiss();
}

用百分比显示进度条试试..

  public class AndroidDownloadFileByProgressBarActivity extends Activity {

    // button to show progress dialog
    Button btnShowProgress;

    // Progress Dialog
    private ProgressDialog pDialog;
    ImageView my_image;
    // Progress dialog type (0 - for Horizontal progress bar)
    public static final int progress_bar_type = 0; 

    // File url to download
    private static String file_url = "your_url";

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // show progress bar button
        btnShowProgress = (Button) findViewById(R.id.btnProgressBar);
        // Image view to show image after downloading
        my_image = (ImageView) findViewById(R.id.my_image);
        /**
         * Show Progress bar click event
         * */
        btnShowProgress.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // starting new Async Task
                new DownloadFileFromURL().execute(file_url);
            }
        });
    }

    /**
     * Showing Dialog
     * */
    @Override
    protected Dialog onCreateDialog(int id) {
        switch (id) {
        case progress_bar_type:
            pDialog = new ProgressDialog(this);
            pDialog.setMessage("Downloading file. Please wait...");
            pDialog.setIndeterminate(false);
            pDialog.setMax(100);
            pDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
            pDialog.setCancelable(true);
            pDialog.show();
            return pDialog;
        default:
            return null;
        }
    }

    /**
     * Background Async Task to download file
     * */
    class DownloadFileFromURL extends AsyncTask<String, String, String> {

        /**
         * Before starting background thread
         * Show Progress Bar Dialog
         * */
        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            showDialog(progress_bar_type);
        }

        /**
         * Downloading file in background thread
         * */
        @Override
        protected String doInBackground(String... f_url) {
            int count;
            try {
                URL url = new URL(f_url[0]);
                URLConnection conection = url.openConnection();
                conection.connect();
                // getting file length
                int lenghtOfFile = conection.getContentLength();

                // input stream to read file - with 8k buffer
                InputStream input = new BufferedInputStream(url.openStream(), 8192);

                // Output stream to write file
                OutputStream output = new FileOutputStream("/sdcard/downloadedfile.jpg");

                byte data[] = new byte[1024];

                long total = 0;

                while ((count = input.read(data)) != -1) {
                    total += count;
                    // publishing the progress....
                    // After this onProgressUpdate will be called
                    publishProgress(""+(int)((total*100)/lenghtOfFile));

                    // writing data to file
                    output.write(data, 0, count);
                }

                // flushing output
                output.flush();

                // closing streams
                output.close();
                input.close();

            } catch (Exception e) {
                Log.e("Error: ", e.getMessage());
            }

            return null;
        }

        /**
         * Updating progress bar
         * */
        protected void onProgressUpdate(String... progress) {
            // setting progress percentage
            pDialog.setProgress(Integer.parseInt(progress[0]));
       }

        /**
         * After completing background task
         * Dismiss the progress dialog
         * **/
        @Override
        protected void onPostExecute(String file_url) {
            // dismiss the dialog after the file was downloaded
            dismissDialog(progress_bar_type);

            // Displaying downloaded image into image view
            // Reading image path from sdcard
            String imagePath = Environment.getExternalStorageDirectory().toString() + "/downloadedfile.jpg";
            // setting downloaded into image view
            my_image.setImageDrawable(Drawable.createFromPath(imagePath));
        }

    }
}

关于android - 显示 JSON 的上传进度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20374753/

相关文章:

Android:释放时删除未使用的资源

php - 创建一种从 JSON 日期时间搜索日期范围的方法

javascript - 使用JSON文件将数据插入数据库

android - 短信广播接收器在一天后未触发

android - 分享失败,在 api 23 中,只有 whatsapp 失败,从选择器中选择 whatsapp 后,它返回到分享者页面

android - 适用于 Android 的 chrome 中的模糊 SVG 图像

asp.net - Sencha Touch 错误您正在尝试解码 ASP.NET 中返回的无效 JSON 字符串 HTML 页面

android-emulator - 如何在 Android 模拟器中连接 localhost?

Xamarin Native Android HttpClient,它位于哪里?

android - 为什么android会得到错误的ssl证书? (两个域,一台服务器)