I need to upload a file to server and monitor it's progress. i need to get a notification how many bytes are sent each time.
For example in case of download i have:
HttpURLConnection connection = (HttpURLConnection) m_url.openConnection();
connection.connect();
InputStream stream = connection.getInputStream();
while ((currentBytes = stream.read(byteBuffer)) > 0) {
totalBytes+=currentBytes;
//calculate something...
}
Now i need to do the same for upload. but if use
OutputStreamWriter stream = new OutputStreamWriter(connection.getOutputStream());
stream.write(str);
stream.flush();
than i can't get any progres notification, about how many bytes are sent (it looks like automic action).
Any suggestions?
Thanks