Specifically how can I:
- Show a button which will let the user browse through his computer and select a file
- Show a progress bar as the files are uploaded
- And store the files to a location on the server of the website on which the applet is being run
Any ideas?
And yes, I must do this in an applet, and I will make it a trusted/signed applet, have looked into all that.
I’ve had to do just this, with very large (4Gb+) files. The piece of code at the bottom of this Google Answers post helped me out a LOT:
http://answers.google.com/answers/threadview?id=193780
It showed a way of uploading files chunked into smaller bits, so you can easily use a JProgressBar.