servlet中的部分代码(未完成):response.setContentType("text/html;charset=utf-8");PrintWriterout=response.getWriter();if(...){\\此处是登录处理代码为true表示登录成功out.println("登陆成功....3秒后跳转到***");/*等待3秒*/response.sendRedirect("new.jsp");}else{out.println("登陆失败....3秒后跳转到***");/*等待3秒*/response.sendRedirect("other.jsp");}我这个现在还没有加计时器,我在网上搜了下,试了try{Threadthread=Thread.currentThread();thread.sleep(1500);//暂停1.5秒后程序继续执行}catch(InterruptedExceptione){e.printStackTrace();}这个的结果是点击登录按钮后1.5秒直接跳转,相关信息根本没有显示在页面上,没有过渡页面。Response.AddHeader("refresh","60;URL=newpath/newpage.jsp")Response.SendRedirect("newpage.jsp");这个我用了没反应,不知道是不是我的代码有问题,我也不了解其工作原理。
呼唤远方
相关分类