public static boolean checkPassword(String password){ Mapmap = new HashMap (); for (int i = 0; i < password.length(); i++) { int A = password.charAt(i); if (A >= 48 && A <= 57) {// 数字 map.put("数字", "数字"); } else if (A >= 65 && A <= 90) {// 大写 map.put("大写", "大写"); } else if (A >= 97 && A <= 122) {// 小写 map.put("小写", "小写"); } else { map.put("特殊", "特殊"); } } Set sets = map.keySet(); int pwdSize = sets.size();// 密码字符种类数 int pwdLength = password.length();// 密码长度 if (pwdSize >= 4 && pwdLength >= 8) { return true;// 强密码 } else { return false;// 弱密码 } }
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)