如何从服务器下载文件?

发布于 2024-11-01 21:49:08 字数 128 浏览 1 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新一帅帅 2024-11-08 21:49:08

我认为最简单的方法是从您的 servlet 中完成此操作。像这样的代码应该可以解决问题:

  public void sendFile(HttpServletResponse response, File file)
         throws IOException {
    InputStream is = null;
    try {
      is = new BufferedInputStream(new FileInputStream(file));

      while (int val = fis.read() >= 0) {
        response.getOutputStream().write(val);
      }
    } finally {
      if( is != null ) {
        is.close();
      }
    }
  }

当然,假设您之前已经设置了 content-type 标头等。虽然还有优化的空间,但这是总体思路。

I think the easiest way would be to do it from your servlet. Something like this code should do the trick:

  public void sendFile(HttpServletResponse response, File file)
         throws IOException {
    InputStream is = null;
    try {
      is = new BufferedInputStream(new FileInputStream(file));

      while (int val = fis.read() >= 0) {
        response.getOutputStream().write(val);
      }
    } finally {
      if( is != null ) {
        is.close();
      }
    }
  }

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文