我正在使用sendRedirect()方法。但事實並非如此。請看看下面的代碼: -無法重定向JSP
<%@page import="utility.ConnectionClass,java.sql.* "%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>processadmin</title>
</head>
<body>
<%
Connection con=null;
ConnectionClass obj=new ConnectionClass();
con=obj.createConnection(con);
String user=request.getParameter("user");
String pass=request.getParameter("pass");
String sql="select * from admin where username='"+user+"'";
Statement stat=con.createStatement();
ResultSet rs=stat.executeQuery(sql);
rs.next();
if((rs.getString(1)==user)&&(rs.getString(2)==pass))
response.sendRedirect("processadmin.jsp");
else
out.println("Not working");
%>
</body>
</html>
當我運行此我得到的輸出: - 使用equals()方法不工作
你應該逐漸[避免](http://stackoverflow.com/q/3177733/1037210)這個可惡的腳本,這是**高度沮喪超過十年。 – Lion