检测密码是否有效,包含大写、小写、数字、特殊符号等

/**
 * 是否有效密码
 * @param pwd
 * @return
 */
public static boolean isValidPwd(String pwd) {
    int numasc = 0;
    int charasc = 0;
    int otherasc = 0;

    String v = pwd;
    if (0 == v.length()) {
        return false;
    } else if (v.length() < 8 || v.length() > 20) {// 长度判断
        return false;
    } else {
        for (int i = 0; i < v.length(); i++) {
            int asciiNumber = v.charAt(i);
            if (asciiNumber >= 48 && asciiNumber <= 57) {
                numasc += 1;
            }
            if ((asciiNumber >= 65 && asciiNumber <= 90) || (asciiNumber >= 97 && asciiNumber <= 122)) {
                charasc += 1;
            }
            if ((asciiNumber >= 33 && asciiNumber <= 47) || (asciiNumber >= 58 && asciiNumber <= 64) || (asciiNumber >= 91 && asciiNumber <= 96) || (asciiNumber >= 123 && asciiNumber <= 126)) {
                otherasc += 1;
            }
        }
        if (0 == numasc) {
            //return "密码必须含有数字";
            return false;
        } else if (0 == charasc) {
            //return "密码必须含有字母";
            return false;
        } else if (0 == otherasc) {
            return false;
            // return "密码必须含有特殊字符";
        } else {
            return true;
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值