Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm uploading several images together using HttpPost and MultipartEntity through a background service and I want to show a progress bar in the notification area to show the upload status of the images.

I've searched a lot and found many close solutions for uploading images and updating progressbar. But they couldn't make me satisfied 100% for my function that I'm using for uploading images. So, I will be thankful if any one can have a better solution for my problem.

The function I'm using is as follow.

public void postFile() {

    try {

        HttpClient httpclient = new DefaultHttpClient();
        httpclient.getParams().setParameter(
                CoreProtocolPNames.PROTOCOL_VERSION, HttpVersion.HTTP_1_1);

        HttpPost httppost = new HttpPost(Urls.uploadImage);
        File[] file = new File[ImagePaths.size()];
                //Here ImagesPaths is a string array containing the paths of images. 


        MultipartEntity mpEntity = new MultipartEntity();

        for (int i = 0; i < ImagePaths.size(); i++) {

            file[i] = new File(ImagePaths.get(i));
            ContentBody cbFile = new FileBody(file[i], "image/*");
            mpEntity.addPart("image", cbFile);
        }

        mpEntity.addPart("imageid", new StringBody("1"));
        httppost.setEntity(mpEntity);
        System.out.println("executing request " + httppost.getRequestLine());

        HttpResponse response = httpclient.execute(httppost);
        HttpEntity resEntity = response.getEntity();

        Log.d("", "postFile Response : " + response.getStatusLine());

        if (resEntity != null) {
            System.out.println(EntityUtils.toString(resEntity));
        }
        if (resEntity != null) {
            resEntity.consumeContent();
        }

        httpclient.getConnectionManager().shutdown();

    } catch (Exception e) {

        e.printStackTrace();
    }

}
share|improve this question
put here whole code. – Sajmon May 29 '12 at 8:06

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.