如何使用Servlet从服务器下载文件

时间:2012-05-21 10:04:56

标签: java

我是servlet技术的新手,我需要编写代码来从客户端的服务器下载文件。

我们可以使用servlet技术从服务器上下载文件吗?

请提供宝贵的建议。

1 个答案:

答案 0 :(得分:3)

如果我理解正确,您可以通过response.sendRedirect()从HTTP servlet下载文件,以获取公共位置可用的文件。

否则,您需要使用响应输出流来绑定文件信息,以便它提示您下载文件:

OutputStream out = response.getOutputStream();
FileInputStream in = new FileInputStream(fileToDownload);
byte[] buffer = new byte[4096];
int length;
while ((length = in.read(buffer)) > 0){
    out.write(buffer, 0, length);
}
in.close();
out.flush();

我认为你可以处理例外情况。