/**
* 验证邮箱格式是否合法
*/
private final static Pattern P3 = Pattern.compile("^w+([-+.]w+)*@w+([-.]w+)*.w+([-.]w+)*$");
/**
2020-03-26