Skip to content

Instantly share code, notes, and snippets.

@eivoePh
eivoePh / DateTimeFormatter
Created June 5, 2018 06:36
DateTimeFormatter格式化Date
Date date = new Date();
String format = DateTimeFormatter
.ofPattern("yyyy-MM-dd HH:mm:ss")
.format(date.toInstant().atZone(ZoneId.systemDefault()));
@eivoePh
eivoePh / Validator.java
Created May 9, 2018 08:01 — forked from huatx/Validator.java
Java正则表达式校验邮箱、手机号和身份证等
package com.googletwo.jdmall.util;
import java.util.regex.Pattern;
/**
* 校验器:利用正则表达式校验邮箱、手机号等
* @author along
* @time 2016/7/10 13:49
* @desc ${TODD}
*/