本文介绍了如何通过Java applet上传文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
具体如何:
- 显示一个按钮,让用户浏览他的电脑并选择一个文件
- 在文件上传时显示进度条
- 并将文件存储到运行小程序的网站服务器上的某个位置
有什么想法吗?
是的,我必须在applet中执行此操作,并且我将使其成为可信/签名的applet,已经调查了所有这些。
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.
推荐答案
我必须这么做,有非常大的(4Gb +)文件。这篇Google Answers帖子底部的一段代码帮了我一大笔钱:
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
它展示了一种上传文件的方式,分块为较小的位,所以你可以轻松使用JProgressBar。
It showed a way of uploading files chunked into smaller bits, so you can easily use a JProgressBar.
这篇关于如何通过Java applet上传文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!