メソッド response.sendRedirect() がプログラムで機能しません。
コードは通過し、正常に出力されますout.println("wrong user");
が、Google ページへのリダイレクトは機能しません。
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);
}
答えはありますか?