Content-disposition 是 MIME 协议的扩展,MIME 协议指示 MIME 用户代理如何显示附加的文件。当 Internet Explorer 接收到头时,它会激活文件下载对话框,它的文件名框自动填充了头中指定的文件名。(请注意,这是设计导致的;无法使用此功能将文档保存到用户的计算机上,而不向用户询问保存位置。)
服务端向客户端游览器发送文件时,如果是浏览器支持的文件类型,一般会默认使用浏览器打开,比如txt、jpg等,会直接在浏览器中显示,如果需要提示用户保存,就要利用Content-Disposition进行一下处理,关键在于一定要加上attachment:
Response.AppendHeader("Content-Disposition","attachment;filename=FileName.txt");
备注:这样浏览器会提示保存还是打开,即使选择打开,也会使用相关联的程序比如记事本打开,而不是IE直接打开了。
此部分摘自:hi.baidu.com/water_qq/item/e257762575a1f70b76272cde
public class Download {
public String download() throws IOException{HttpServletResponse response = ServletActionContext.getResponse();
response.setContentType("application/octet-stream");response.setHeader("Content-Disposition", "attachment; filename=\"" + new String("呵呵".getBytes("utf-8"),"iso-8859-1") + "\"");
attachment --- 作为附件下载
inline --- 在线打开
OutputStream out = response.getOutputStream();
BufferedInputStream bis = new BufferedInputStream(new FileInputStream("E:\\Programming\\Workspace_servlet\\distinctLogin\\WebRoot\\LogMeIn Hamachi.lnk"));
byte[] b = new byte[bis.available()];
response.setContentLength(b.length);
bis.read(b);
out.write(b);
return null;
}
}
下面文字摘自:hi.baidu.com/water_qq/item/e257762575a1f70b76272cde
1.当然filename参数可以包含路径信息,但User-Agnet会忽略掉这些信息,只会把路径信息的最后一部分做为文件名。当你在响应类型为application/octet- stream情况下使用了这个头信息的话,那就意味着你不想直接显示内容,而是弹出一个”文件下载”的对话框,接下来就是由你来决定“打开”还是“保存” 了。
注意事项:
1.当代码里面使用Content-Disposition来确保浏览器弹出下载对话框的时候。 response.addHeader("Content-Disposition","attachment");一定要确保没有做过关于禁止浏览器缓存的操作。如下:
response.setHeader("Pragma", "No-cache");
response.setHeader("Cache-Control", "No-cache");
response.setDateHeader("Expires", 0);
不然会发现下载功能在opera和firefox里面好好的没问题,在IE下面就是不行,就是找不到文件。
如果在jsp中直接写<a href="文件路径">link</a> 如果是普通文件将直接在浏览器中打开,如果是不能直接打开的文件才会提示下载。这是因为没用通过response进行处理。而是直接输出导致的。
inline参考:http://www.cnblogs.com/jzaileen/articles/1281025.html