------解决方案-------------------- 要想使楼主的业务显示丰满一点其实很容易, SQLLogin.login(username,password) 这个改成 //假如SQLLogin.login方法返回一个UserInfo类型的对象. UserInfo user = SQLLogin.login(username); if (user == null) throw new Exception("没有这个用户名"); if (user.Password != password) throw new Exception("用户密码错误")