账号密码登录(Account password authentication)

账号密码登录(Account password authentication)

直到输入账号正确才能输入密码(3次验证机会)并提示剩余次数,(正确的账号和密码信息来自properties文件读取匹配)

public class TestAccountPassword {
    public boolean testAccout() {
        System.out.println("欢迎进入系统 请进行管理员登录验证!!");
        String acc = "", pass = "";
        int i = 3;
        do {
            do {
                if (i <= 0) {
                    System.out.println("sorry 三次机会已经用完了!!");
                    return false;
                }
                System.out.println("请输入用户名:");
                acc = CMUtility.readString(8);
                if (!getProperties("account").equals(acc)) {
                    i--;
                    System.out.println("登账号码错误!您还剩余" + i + "次机会请重新输入:");
                } else {
                    break;
                }
            } while (i > 0);
            do {
                if (i <= 0) {
                    System.out.println("sorry 三次机会已经用完了!!");
                    return false;
                }
                System.out.println("请输入密码:");
                pass = CMUtility.readString(8);
                if (!pass.equals(getProperties("password"))) {
                    i--;
                    System.out.println("登录密码错误!您还剩余" + i + "次机会请重新输入:");
                } else {
                    break;
                }
            } while (i > 0);
            if (pass.equals(getProperties("password"))) {
                System.out.println("恭喜您!登录成功!");
                return true;
            }
        } while (i > 0);
        System.out.println("登录失败!");
        return false;
    }

    public static String getProperties(String accorpass) {
        // 创建Properties对象
        Properties pro = new Properties();
        // 1 调用方法 读取 .properties文件到集合 对象 pro中
        try {
            pro.load(new FileInputStream("src/manage.properties"));
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 2.根据键值从pro中读取value
        return pro.getProperty(accorpass);
    }
}
  • 2
    点赞
  • 8
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
"Username/Password Authentication Failed"意味着通过用户名和密码进行身份验证时出现了错误。根据引用和引用的描述,可能是由于输入的用户名和密码不正确导致的。请确保输入的用户名和密码正确无误,并再次尝试登录。 此外,根据引用的描述,如果系统的PermitRootLogin设置为without-password,那么对于root用户来说,密码验证是无效的。这可能导致使用securecrt无法登录系统。如果您正在尝试使用root用户登录,请确认系统的PermitRootLogin设置,并根据需要进行修改。 总结来说,要解决"Username/Password Authentication Failed"的问题,您需要确认输入的用户名和密码是否正确,并检查系统的PermitRootLogin设置是否适当。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [无法建立SSH链接和Password Authentication Failed,Please verify that the username and password are ...](https://blog.csdn.net/lingxun123456/article/details/118444194)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] - *2* *3* [SecureCRT无法连接Linux虚拟机,返回账号密码错误Password Authentication Failed](https://blog.csdn.net/Chen_Victor/article/details/53092428)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值