Java实现强密码检查
密码不能为空,密码长度不小于8位数,包含小写字母、大写字母、数字和特殊字符。
public static boolean checkPasswordIsStrong(String password) {
if (password == null || password.length()<8) {
retu
密码不能为空,密码长度不小于8位数,包含小写字母、大写字母、数字和特殊字符。
public static boolean checkPasswordIsStrong(String password) {
if (password == null || password.length()<8) {
retu