Hi iam writing a sample application where i need to select a image from gallery and upload the image to server using HTTP post.
my code is as shown
file = new File(mSelectedFileName);
Toast tt4 = Toast.makeText(getApplicationContext(), "in upload", Toast.LENGTH_LONG);
tt4.show();
try {
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
InputStreamEntity reqEntity = new InputStreamEntity(
new FileInputStream(file), -1);
reqEntity.setContentType("binary/octet-stream");
reqEntity.setChunked(true); // Send in multiple parts if needed
httppost.setEntity(reqEntity);
HttpResponse response = httpclient.execute(httppost);
//Do something with response...
} catch (Exception e) {
// show error
Toast tt2 = Toast.makeText(getApplicationContext(), ""+e.getMessage(), Toast.LENGTH_LONG);
tt2.show();
}
here while upload is in progress i need to show a progress bar. and once complete in need to stop the progress bar. how can i get to know the upload is complete.