方法response.sendRedirect()在我的程序中不起作用。
代码通过并成功打印out.println("wrong user");
,但重定向到谷歌页面不起作用。
String id="java";
try
{
query = "select Id from Users where Id= ?";
ps =Database.getConnection().prepareStatement(query);
ps.setString(1, id);
rs = ps.executeQuery();
if(rs.next())
{
out.println(rs.getString(1));
}
else
{
out.println("wrong user");
response.sendRedirect("www.google.com");
}
rs.close();
}
catch(Exception e)
{
//e.printStackTrace();
System.out.print(e);
}
有答案吗?
4条答案
按热度按时间mqkwyuun1#
重定向后您应该
return
。调用sendRedirect()后不会自动返回。
qlfbtfca2#
HttpServletResponse.sendRedirect()的工作原理如下:
http://www.google.com
,则它重定向到http://www.google.com
。/
开头,则相对于上下文根重定向,否则重定向到当前URL基于上述规则
in your case it redirects to http://currenturl/www.google.com
。改为如下修改代码
o7jaxewo3#
试试这个
mgdq6dx14#
尝试提供协议。