jsp重定向out.print() ; response.sendRedirect()

要想在重定向之前输出一些提示信息,可能会想到:

out.println("<script>alert('错误信息'')</script>");
response.sendRedirect(index.html);
return;

但这个简单的想法,实现不了.

没办法....只好另想他法

1.全部用out.println输出javascript,由javascript完成重定向


out.println("<script>alert('错误信息')</script>");
out.println("<script>window.location.href='index.jsp'</script>");
return;

 

2.用Header头刷新到重定向页面


out.println("<script>alert('错误信息')</script>");
response.setHeader("refresh","1;url=index.jsp");
return;

 

3.用java swing 组件的 JOptionPane 代替 javascript 提示框,由sendRedirect()完成重定向


javax.swing.JOptionPane.showMessageDialog(null, "错误信息");
response.sendRedirect("index.jsp");
return;


文章出处:http://www.diybl.com/course/3_program/java/javajs/20071226/95344.html

 

求其它方法……

你可能感兴趣的:(JavaScript,java,html,jsp,swing)