This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Date date = new Date(); | |
String format = DateTimeFormatter | |
.ofPattern("yyyy-MM-dd HH:mm:ss") | |
.format(date.toInstant().atZone(ZoneId.systemDefault())); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.googletwo.jdmall.util; | |
import java.util.regex.Pattern; | |
/** | |
* 校验器:利用正则表达式校验邮箱、手机号等 | |
* @author along | |
* @time 2016/7/10 13:49 | |
* @desc ${TODD} | |
*/ |