I'm uploading image files from device to a PHP server by converting the file into byte array. I'm uploading files to server using android-async-http-1.3.1.jar in my app.
http://loopj.com/android-async-http/
What i want is to show on a progress bar how much bytes of the byte array has been uploaded. Now , the problem is , how can i get to know how much bytes has been uploaded while a uploading is on progress. Need help on the issue with ideas / example / codes. Thanks in advance guys.
Finally , i have done it. I have done this using file-input/output-stream inside AsyncTask class. Below, i have given the code for uploading file & showing that in progress bar ......
class ImageUploadTask extends AsyncTask<Void, Void, String> {
@Override
protected void onPreExecute() {
pb.setVisibility(View.VISIBLE);
}
@Override
protected String doInBackground(Void... unused) {
String twoHyphens = "--";
String boundary = "*****" + Long.toString(System.currentTimeMillis()) + "*****";
String lineEnd = "\r\n";
try
{
FileInputStream fileInputStream = new FileInputStream(new File(pathToOurFile));
URL url = new URL(urlServer);
connection = (HttpURLConnection) url.openConnection();
// Allow Inputs & Outputs
connection.setDoInput(true);
connection.setDoOutput(true);
connection.setUseCaches(false);
// Enable POST method
connection.setRequestMethod("POST");
connection.setRequestProperty("Connection", "Keep-Alive");
connection.setRequestProperty("Content-Type", "multipart/form-data;boundary="+boundary);
outputStream = new DataOutputStream( connection.getOutputStream() );
outputStream.writeBytes(twoHyphens + boundary + lineEnd);
outputStream.writeBytes("Content-Disposition: form-data; name=\"image\";filename=\"" + pathToOurFile +"\"" + lineEnd);
outputStream.writeBytes(lineEnd);
bytesAvailable = fileInputStream.available();
Log.v("Size",bytesAvailable+"");
pb.setProgress(0);
pb.setMax(bytesAvailable);
//Log.v("Max",pb.getMax()+"");
bufferSize = Math.min(bytesAvailable, maxBufferSize);
buffer = new byte[bufferSize];
// Read file
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
while (bytesRead > 0)
{
outputStream.write(buffer, 0, bufferSize);
bytesAvailable = fileInputStream.available();
Log.v("Available",bytesAvailable+"");
publishProgress();
bufferSize = Math.min(bytesAvailable, maxBufferSize);
bytesRead = fileInputStream.read(buffer, 0, bufferSize);
}
outputStream.writeBytes(lineEnd);
outputStream.writeBytes(twoHyphens + boundary + twoHyphens + lineEnd);
// Responses from the server (code and message)
serverResponseCode = connection.getResponseCode();
serverResponseMessage = connection.getResponseMessage();
System.out.println(serverResponseMessage);
fileInputStream.close();
outputStream.flush();
outputStream.close();
}
catch (Exception ex)
{
//Exception handling
}
//publishProgress();
return null;
}
@Override
protected void onProgressUpdate(Void... unsued) {
super.onProgressUpdate(unsued);
pb.setProgress(pb.getMax()-bytesAvailable);
}
@Override
protected void onPostExecute(String sResponse) {
//if(pb.getProgress()>= pb.getMax())
pb.setVisibility(View.INVISIBLE);
}
}