Pattern p = Pattern.compile(这里写你的验证规则,如必须是字母和数字组合等);//Matcher m = p.matcher(str);str为你的密码,Boolean b=m.matches();返回匹配结果,true说明符合,false不符合你可以看下java api中这两个类,有详细说明