public class Utils {
/**
* 驗證Email
*
*@paramemailemail地址,格式:zhangsan@sina.com浦楣,zhangsan@xxx.com.cn袖肥,xxx代表郵件服務(wù)商
*@return驗證成功返回true,驗證失敗返回false
*/
public static booleancheckEmail(String email) {
String regex ="\\w+@\\w+\\.[a-z]+(\\.[a-z]+)?";
returnPattern.matches(regex, email);
}
/**
* 驗證身份證號碼
*
*@paramidCard居民身份證號碼18位振劳,第一位不能為0椎组,最后一位可能是數(shù)字或字母,中間16位為數(shù)字 \d同[0-9]
*@return驗證成功返回true历恐,驗證失敗返回false
*/
public static booleancheckIdCard(String idCard) {
String regex ="[1-9]\\d{16}[a-zA-Z0-9]{1}";
returnPattern.matches(regex, idCard);
}
/**
* 驗證手機(jī)號碼(支持國際格式寸癌,+86135xxxx...(中國內(nèi)地),+00852137xxxx...(中國香港))
*
*@parammobile移動弱贼、聯(lián)通蒸苇、電信運(yùn)營商的號碼段
*
移動的號段:134(0-8)、135哮洽、136填渠、137、138鸟辅、139氛什、147(預(yù)計用于TD上網(wǎng)卡)
*? ? ? ? ? ? ? 、150匪凉、151枪眉、152、157(TD專用)再层、158贸铜、159堡纬、187(未啟用)、188(TD專用)
*
聯(lián)通的號段:130蒿秦、131烤镐、132、155棍鳖、156(世界風(fēng)專用)炮叶、185(未啟用)、186(3g)
*
電信的號段:133渡处、153镜悉、180(未啟用)、189
*@return驗證成功返回true医瘫,驗證失敗返回false
*/
public static booleancheckMobile(String mobile) {
String regex ="(\\+\\d+)?1[3458]\\d{9}$";
returnPattern.matches(regex, mobile);
}
/**
* 驗證固定電話號碼
*
*@paramphone電話號碼侣肄,格式:國家(地區(qū))電話代碼 + 區(qū)號(城市代碼) + 電話號碼,如:+8602085588447
*
國家(地區(qū)) 代碼 :標(biāo)識電話號碼的國家(地區(qū))的標(biāo)準(zhǔn)國家(地區(qū))代碼醇份。它包含從 0 到 9 的一位或多位數(shù)字稼锅,
*? ? ? ? ? ? ? 數(shù)字之后是空格分隔的國家(地區(qū))代碼。
*
區(qū)號(城市代碼):這可能包含一個或多個從 0 到 9 的數(shù)字被芳,地區(qū)或城市代碼放在圓括號——
*? ? ? ? ? ? ? 對不使用地區(qū)或城市代碼的國家(地區(qū))缰贝,則省略該組件。
*
電話號碼:這包含從 0 到 9 的一個或多個數(shù)字
*@return驗證成功返回true畔濒,驗證失敗返回false
*/
public static booleancheckPhone(String phone) {
String regex ="(\\+\\d+)?(\\d{3,4}\\-?)?\\d{7,8}$";
returnPattern.matches(regex, phone);
}
/**
* 驗證整數(shù)(正整數(shù)和負(fù)整數(shù))
*
*@paramdigit一位或多位0-9之間的整數(shù)
*@return驗證成功返回true剩晴,驗證失敗返回false
*/
public static booleancheckDigit(String digit) {
String regex ="\\-?[1-9]\\d+";
returnPattern.matches(regex, digit);
}
/**
* 驗證整數(shù)和浮點數(shù)(正負(fù)整數(shù)和正負(fù)浮點數(shù))
*
*@paramdecimals一位或多位0-9之間的浮點數(shù),如:1.23侵状,233.30
*@return驗證成功返回true赞弥,驗證失敗返回false
*/
public static booleancheckDecimals(String decimals) {
String regex ="\\-?[1-9]\\d+(\\.\\d+)?";
returnPattern.matches(regex, decimals);
}
/**
* 驗證空白字符
*
*@paramblankSpace空白字符,包括:空格趣兄、\t绽左、\n、\r艇潭、\f拼窥、\x0B
*@return驗證成功返回true,驗證失敗返回false
*/
public static booleancheckBlankSpace(String blankSpace) {
String regex ="\\s+";
returnPattern.matches(regex, blankSpace);
}
/**
* 驗證中文
*
*@paramchinese中文字符
*@return驗證成功返回true蹋凝,驗證失敗返回false
*/
public static booleancheckChinese(String chinese) {
String regex ="^[\u4E00-\u9FA5]+$";
returnPattern.matches(regex, chinese);
}
/**
* 驗證日期(年月日)
*
*@parambirthday日期鲁纠,格式:1992-09-03,或1992.09.03
*@return驗證成功返回true鳍寂,驗證失敗返回false
*/
public static booleancheckBirthday(String birthday) {
String regex ="[1-9]{4}([-./])\\d{1,2}\\1\\d{1,2}";
returnPattern.matches(regex, birthday);
}
/**
* 驗證URL地址
*
*@paramurl格式:http://blog.csdn.net:80/xyang81/article/details/7705960? 或 http://www.csdn.net:80
*@return驗證成功返回true改含,驗證失敗返回false
*/
public static booleancheckURL(String url) {
String regex ="(https?://(w{3}\\.)?)?\\w+\\.\\w+(\\.[a-zA-Z]+)*(:\\d{1,5})?(/\\w*)*(\\??(.+=.*)?(&.+=.*)?)?";
returnPattern.matches(regex, url);
}
/**
*
* 獲取網(wǎng)址 URL 的一級域名
* http://detail.tmall.com/item.htm?spm=a230r.1.10.44.1xpDSH&id=15453106243&_u=f4ve1uq1092 ->> tmall.com
*
*
*@paramurl
*@return
*/
public staticString getDomain(String url) {
Pattern p = Pattern.compile("(?<=http://|\\.)[^.]*?\\.(com|cn|net|org|biz|info|cc|tv)", Pattern.CASE_INSENSITIVE);
// 獲取完整的域名
// Pattern p=Pattern.compile("[^//]*?\\.(com|cn|net|org|biz|info|cc|tv)", Pattern.CASE_INSENSITIVE);
Matcher matcher = p.matcher(url);
matcher.find();
returnmatcher.group();
}
/**
* 匹配中國郵政編碼
*
*@parampostcode郵政編碼
*@return驗證成功返回true,驗證失敗返回false
*/
public static booleancheckPostcode(String postcode) {
String regex ="[1-9]\\d{5}";
returnPattern.matches(regex, postcode);
}
/**
* 匹配IP地址(簡單匹配迄汛,格式捍壤,如:192.168.1.1骤视,127.0.0.1,沒有匹配IP段的大小)
*
*@paramipAddressIPv4標(biāo)準(zhǔn)地址
*@return驗證成功返回true鹃觉,驗證失敗返回false
*/
public static booleancheckIpAddress(String ipAddress) {
String regex ="[1-9](\\d{1,2})?\\.(0|([1-9](\\d{1,2})?))\\.(0|([1-9](\\d{1,2})?))\\.(0|([1-9](\\d{1,2})?))";
returnPattern.matches(regex, ipAddress);
}
}