账号密码登录(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
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值