Hello, I am trying to accomplish an upload progress bar for my application. It will send large files, so it would be very important to show this information to the end user. Is there way to get information about how much has actually sent?
I have tried sending 1024 bytes at a time (to OutputStream), but I guess it all gets buffered before sending, because it shows it has sent it all before it actually has even started.
If this is not possible, any viable workarounds for this?

Reply With Quote

