在浏览器中显示文件上传到 servlet 的状态
我需要在浏览器中显示文件上传到 servlet 的状态,如何在不使用 jquery 之类的库的情况下实现这一点,执行此操作的各种选项有哪些,哪一个是最好的?
最好的问候,
克沙夫
I need to show the status of file upload to servlet in the browser, how can this be acheived without using any libraries like jquery, what are the various options for doing this and which one is the best?
Best Regards,
Keshav
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果根本不使用任何附加组件,您就不能,至少在当前所有流行的浏览器中不能。有一些基于 Flash 的上传器可以做到这一点,并且在一些较新的浏览器中可以使用与 HTML5 相关的文件 API。在旧版浏览器 (IE) 中,您根本无法访问客户端文件系统,因此您的 Javascript 代码不会知道文件大小。
Without using any add-ons at all, you can't, at least not in all currently-popular browsers. There are some Flash-based uploaders that can do it, and in some newer browsers there's an HTML5-related file API that could be used. In older browsers (IE), you have no access at all to the client-side filesystem, so your Javascript code won't have any idea of the file size.