JavaWeb学习记录(一)——response响应头之缓存设置与下载功能的实现
一、HTTP中常用响应头
- Location: http://www.it315.org/index.jsp
- Server:apache tomcat
- Content-Encoding: gzip
- Content-Length: 80
- Content-Language: zh-cn
- Content-Type: text/html; charset=GB2312
- Last-Modified: Tue, 11 Jul 2000 18:23:51 GMT
- Refresh: 1;url=http://www.it315.org
- Content-Disposition: attachment; filename=aaa.zip
- Transfer-Encoding: chunked
- Set-Cookie:SS=Q0=5Lb_nQ; path=/search
- ETag: W/"7777-1242234904000"
- Expires: -1
- Cache-Control: no-cache
- Pragma: no-cache
- Connection: close/Keep-Alive
- Date: Tue, 11 Jul 2000 18:23:51 GMT
二、设置缓存信息
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
System.out.println("-----------CacheServlet-------------");
// 设置相应头信息
// 设置缓存时间100秒
// response.setDateHeader("Expires",
// System.currentTimeMillis()+100*1000);
// 禁止使用缓存
// response.setDateHeader("Expires", 0);
// response.setHeader("Cache-Control", "no-cache");
// response.setHeader("Pragma", "no-cache");
response.setContentType("text/html");
PrintWriter out = response.getWriter();
out.println("<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\">");
out.println("<HTML>");
out.println(" <HEAD><TITLE>A Servlet</TITLE></HEAD>");
out.println(" <BODY>");
// 读取文件
String path = getServletContext().getRealPath("/a.txt");
FileReader reader = new FileReader(new File(path));
char buffer[] = new char[256];
int len = 0;
while ((len = reader.read(buffer)) != -1) {
out.println(new String(buffer, 0, len));
}
reader.close();
out.println(" </BODY>");
out.println("</HTML>");
out.flush();
out.close();
}
/**
* 最后一次修改的时间
*/
@Override
protected long getLastModified(HttpServletRequest req) {
String path = getServletContext().getRealPath("/a.txt");
File file = new File(path);
return file.lastModified();
}
a.txt文件内容:
a.txt在项目中的放置地址:
结果:
三、下载功能源代码如下
public class DownServlet extends HttpServlet {
public void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
String path = request.getServletContext().getRealPath("/down/中国.png");
File file = new File(path);
// 下载的方式打开此操作(指定编码方式,下载文件名与源文件一致)
response.addHeader("Content-Disposition", "attachment;fileName="
+ URLEncoder.encode(file.getName(), "UTF-8"));
OutputStream os = response.getOutputStream();
InputStream is = new FileInputStream(file);
int len = 0;
byte[] buffer = new byte[1024];
while ((len = is.read(buffer)) != -1) {
os.write(buffer, 0, len);
}
is.close();
os.close();
}
public void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
doGet(request, response);
}
}
本程序中下载文件的地址放置在该项目的如下位置:
JavaWeb学习记录(一)——response响应头之缓存设置与下载功能的实现的更多相关文章
- JavaWeb学习记录(二十三)——文件上传与下载
一.导入jar包
- HTTP学习记录:四、头信息(请求和响应)
学习资源主要为:@小坦克HTTP相关博客 一.请求头信息(Request Header) 请求头信息包含比较多,如下: 1.Cache头域 if-modified-Since 作用:把浏览器端缓存页面 ...
- javaweb笔记6多个响应头以及 HttpServletResponse对象
1 常见的响应头 Location: http://www.it315.org/index.jsp 重定向的地址.配合302的状态码一起使用,实现重定向效果. Content-Type: te ...
- JavaWeb学习记录总结(二十九)--Servlet\Session\Cookie\Filter实现自动登录和记住密码
一.Servlet package autologin.servlet.login; import java.io.IOException;import java.security.MessageDi ...
- JavaWeb学习记录(七)——MVC操作数据库增删改查与分页功能
一.分页工具类 package blank.util;import java.util.List; import org.springframework.jdbc.core.JdbcTemplate; ...
- JavaWeb学习记录(九)——Cookie的增加、删除、查看
一.servlet功能代码: public void doGet(HttpServletRequest request, HttpServletResponse response) ...
- JavaWeb学习记录(二十六)——在线人数统计HttpSessionListener监听实现
一.session销毁控制层代码 public class InvalidateSession extends HttpServlet { public void doGet(HttpServletR ...
- javaweb学习记录(1)
Java基础学习笔录 1.运行java程序,出现bad version number in.class file 编译器()的版本号高于运行环境(jre)的版本号,可以降低编译器版本号,也可以通过提升 ...
- JavaWeb学习记录(六)——用户登录功能
使用JDBC.spring框架.servlet实现一个简单的用户登录功能. 一.mySql数据库 SET FOREIGN_KEY_CHECKS=0; -- ---------------------- ...
随机推荐
- SpinEdit
用code给value赋值会触发 change事件
- Hibernate中的一级缓存、二级缓存和懒加载
1.为什么使用缓存 hibernate使用缓存减少对数据库的访问次数,从而提升hibernate的执行效率.hibernate中有两种类型的缓存:一级缓存和二级缓存. 2.一级缓存 Hibenate中 ...
- POJ 3384
题目大意: 给定一个多边形,给定一个圆的半径,要求在多边形中放置两个同样半径的圆,可相互覆盖,但不能超出多边形的范围,希望两个圆的面积覆盖和最大 输出任意一组满足的圆的圆心点 如果两个圆不相互覆盖,那 ...
- ios应用数据存储的常用方式 ios7.1应用沙盒
归档:用某种格式保存某个对象,又称持久化. 1XML 属性列表plist归档(持久化) 2Preference(偏好设置) 3NSKeyedArchiver归档 4SQLite3 5Core Data ...
- 最大公约数——Program G
最大公约数 Description There is a hill with n holes around. The holes are signed from 0 to n-1. A rabbit ...
- 【转】linux下如何查看某个软件 是否安装?安装路径在哪
以redhat\centos 中php-mysql为例1:如果包是通过yum或者rpm方式安装[root@localhost yum.repos.d]# rpm -qa //找出系统所有的包,找到对应 ...
- 找不到库文件地址,修改修改方法framework
直接双击地址行修改
- In p = new Fred(), does the Fred memory “leak” if the Fred constructor throws an exception?
No. If an exception occurs during the Fred constructor of p = new Fred(), the C++ language guarantee ...
- C118 免按开机自动加载固件
最近无事,研究了按按钮开机的功能:功能的起初是参考了别人的系统是怎么做免开机加载固件的. 一.原理: 1.c118 原生loader部分代码是没有源代码的,它上电只需要按开机键然后系统就会起来. 2. ...
- 安装VMware Tools找不到内核头文件
http://blog.csdn.net/bobbat/article/details/38568885 安装VMware Tools,解决无法找到kernel header path的问题 安装 V ...