原告发布于:http://yanyanlong.javaeye.com/blog/115394 public static boolean checkEmail(String mail){ String regex = "//w+([-+.]//w+)*@//w+([-.]//w+)*//.//w+([-.]//w+)*"; Pattern p = Pattern.compile(regex); Matcher m = p.matcher(mail); return m.find(); }