How to check dropbox progress on large files?
I\'m trying to upload a 1.66 gb file to dropbox using core-api and Java. It is taking an extremely lon
Perhaps it can be achieved by wrapping the InputStream in a ProgressMonitorInputStream. But make sure you do not block the Event Dispatch Thread, or it will freeze until completion.
InputStream
See How to Use Progress Bars for details.