为了账号安全,请及时绑定邮箱和手机立即绑定

在屏幕上显示的password和temp相同,可是却总执行doerror页面!

在屏幕上显示的password和temp相同,可是却总执行doerror页面!

一只甜甜圈 2023-03-12 18:14:20
package com.course;import java.io.*;import java.sql.*;import javax.servlet.*;import javax.servlet.http.*;public class login_confirm extends HttpServlet{//响应Post请求public void doPost(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException { String message=null; String id=null;//接收用户的登录名id=req.getParameter("id");//创建session对象HttpSession session=req.getSession(true);//将用户登录名存入session中session.setAttribute("id",String.valueOf(id));String password=null;//接收用户登录的密码password= req.getParameter("password");String kind =null;//接收用户级别kind=req.getParameter("kind");//调用getPassword方法,获取数据库中查询出来的密码String temp =getPassword(req,res,id,kind);//对比查询出的密码和用户输入的密码是否匹配if(password.equals(temp))//密码输入正确,调用goo方法goo(req,res,kind);else {//密码输入错误message="用户名或密码有误!";doError(req,res,message) ;}} //根据用户的级别,分别转向不同的页面……//根据用户的级别和输入的用户名,查询对应的密码  public String getPassword(HttpServletRequest req, HttpServletResponse res,String id,String kind)throws ServletException, IOException {//声明数据库连接类sqlBean的实例sqlBean db= new sqlBean();  String pw="";  String sql="select password from "+kind+" where id='"+id+"'";try{//进行数据库查询操作ResultSet rs=db.executeQuery(sql);  if(rs.next() ){pw= rs.getString("password");}} catch(Exception e){ System.out.print(e.toString());}  return pw; }//处理错误页面public void doError(HttpServletRequest req,HttpServletResponse res,String str)throws ServletException, IOException {req.setAttribute("problem", str);RequestDispatcher rd = getServletContext().getRequestDispatcher("/errorpage.jsp");rd.forward(req, res);}…… }我想问题应该出在.equals()语句上,因为若把报错语句改成message=password+","+temp+"用户名或密码有误!";
查看完整描述

2 回答

?
千巷猫影

TA贡献1829条经验 获得超7个赞

改这句if(password.equals(temp)) 试试
if(password.trim().equals(temp.trim()))

查看完整回答
反对 回复 2023-03-15
?
慕田峪4524236

TA贡献1875条经验 获得超5个赞

com.finace.bean.coin.newuser.user(newuser.java:22)
22行没有得到你想要得到的值,为null了。所以报空指针异常。你打印以下就知道了。

查看完整回答
反对 回复 2023-03-15
  • 2 回答
  • 0 关注
  • 92 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信