如何从服务器下载文件?
我已经使用 apache common-fileupload 和 common-io 成功将多个文件上传到服务器。上传位置是服务器上的目录,例如可能是 c:\uploaded
现在如何从服务器下载文件?特别是来自服务器上的目录
i have successfully uploaded multiple file to server using apache common-fileupload and common-io.Uploaded location is a direcory on the server for eg it may be c:\uploaded
Now how to download a file from server ? specifically from directory on the server
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为最简单的方法是从您的 servlet 中完成此操作。像这样的代码应该可以解决问题:
当然,假设您之前已经设置了
content-type
标头等。虽然还有优化的空间,但这是总体思路。I think the easiest way would be to do it from your servlet. Something like this code should do the trick:
Assuming, of course, you've set the
content-type
header and so on previously. There's room for optimisation, but it's the general idea.