http协议: 浏览器客户端 和 服务器端 之间数据传输的格式规范
1)使用火狐的firebug插件(右键->firebug->网络)或者是右键-->审查元素-->网络
2)使用谷歌的“审查元素”
重新在 地址栏 输入地址,回车,就可以看到浏览器发送给服务器的信息
和服务器相应给浏览器的信息
如下图片
// 设置以下载方式打开文件
String fileName = file.getName();
response.setContentType("application/x-download");
fileName = new String(fileName.getBytes(), "ISO-8859-1");
response.setHeader("Content-Disposition", "attachment; filename="+fileName);
// 发送图片
FileInputStream in = new FileInputStream(file);
byte[] buf = new byte[1024];
int len = 0;
//把图片内容写出到浏览器
while( (len=in.read(buf))!=-1 ){
response.getOutputStream().write(buf, 0, len);
}
response.getOutputStream().flush();
response.getOutputStream().close();
in.close();