码迷,mamicode.com
首页 > 其他好文 > 详细

如何用setHeader("refresh"...实现跳转?

时间:2018-12-15 11:49:30      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:package   vax   col   tps   tle   chap   strong   eth   实现   

2.用setHeader("refresh"...跳转:(视频下载) (全部书籍)


马 克-to-win:使用response对象的setHeader()方法可以实现在某个时间点跳转到某个页面的作用。比如 response.setHeader("refresh",60);可以实现六十秒以后,又一次访问当前页面。而response.setHeader ("refresh","3;URL=http://localhost:8080/ServletHello/cookie.html"); 实现3秒后访问新页面:http://localhost:8080/ServletHello/cookie.html。



例:3.2.1


package com;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
public class DeleteCookie extends HttpServlet {

详情请见:http://www.mark-to-win.com/index.html?content=Jsp/jspUrl.html&chapter=Jsp/jsp2_web.html#setHeaderrefresh

如何用setHeader("refresh"...实现跳转?

标签:package   vax   col   tps   tle   chap   strong   eth   实现   

原文地址:https://www.cnblogs.com/mark-to-win/p/10122576.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!