对于基于 struts 和 jsp 技术构建的 Web 应用程序,我正在寻找一个很好的示例来解释如何从服务器端下载文件。
问问题
3868 次
1 回答
1
我设法用这几行代码做到了:只需将其添加到您的操作中:
OutputStream out = response.getOutputStream();
response.setContentType("application/rtf");
FileInputStream in = new FileInputStream("your_file_path");
byte[] buffer = new byte[4096];
int length;
while ((length = in.read(buffer)) > 0){
out.write(buffer, 0, length);
}
in.close();
out.flush();
于 2012-08-24T19:33:53.373 回答