package fmc.eq.common.utils;
import java.lang.reflect.Array;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
import java.util.Map;
/**
*
* 字符串工具类
*/
public class StringUtil {
public static Boolean isEmpty(Object type){
if(type != null && !"".equals(type)){
return false;
}
return true;
}
public static Boolean isListEmpty(List<!--?--> list){
if(list != null && list.size() > 0){
return false;
}
return true;
}
/**
* 判断对象为空字符串或者为null,如果满足其中一个条件,则返回true
*
* @param o
* @return
*/
@SuppressWarnings("rawtypes")
public static boolean isNullOrEmpty(Object obj) {
boolean isEmpty = false;
if (obj == null) {
isEmpty = true;
} else if (obj instanceof String) {
isEmpty = ((String) obj).trim().isEmpty();
} else if (obj instanceof Collection) {
isEmpty = (((Collection) obj).size() == 0);
} else if (obj instanceof Map) {
isEmpty = ((Map) obj).size() == 0;
} else if (obj.getClass().isArray()) {
isEmpty = Array.getLength(obj) == 0;
}
return isEmpty;
}
/**
* 检查 email输入是否正确 正确的书写格 式为 username@domain
*
* @param text
* @return
*/
public static boolean checkEmail(String text, int length) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("\\w+([-+.]\\w+)*@\\w+([-.]\\w+)*\\.\\w+([-.]\\w+)*") && text.length() <= length;
}
/**
* 检查电话输入 是否正确 正确格 式 012-87654321、0123-87654321、0123-7654321
*
* @param text
* @return
*/
public static boolean checkTelephone(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches(
"(0\\d{2,3}-\\d{7,8})|" +
"(0\\d{9,11})|" +
"(\\d{7})|" +
"(\\d{8})|" +
"(4\\d{2}\\d{7})|" +
"(4\\d{2}-\\d{7})|" +
"(4\\d{2}-\\d{3}-\\d{4})|" +
"(4\\d{2}-\\d{4}-\\d{3})");
}
/**
* 检查手机输入 是否正确
*
* @param text
* @return
*/
public static boolean checkMobilephone(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("^1(3[0-9]|4[579]|5[0-35-9]|8[0-9]|7[015-8])\\d{8}$");
}
/**
* 检查中文名输 入是否正确
*
* @param text
* @return
*/
public static boolean checkChineseName(String text, int length) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("^[\u4e00-\u9fa5]+$") && text.length() <= length;
}
/**
* 检查字符串中是否有空格,包括中间空格或者首尾空格
*
* @param text
* @return
*/
public static boolean checkBlank(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("^\\s*|\\s*$");
}
/**
* 检查字符串是 否含有HTML标签
*
* @param text
* @return
*/
public static boolean checkHtmlTag(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("<(\\S*?)[^>]*>.*?<!--\\1-->|<.*? />");
}
/**
* 检查URL是 否合法
*
* @param text
* @return
*/
public static boolean checkURL(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("[a-zA-z]+://[^\\s]*");
}
/**
* 检查IP是否 合法
*
* @param text
* @return
*/
public static boolean checkIP(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("\\d{1,3}+\\.\\d{1,3}+\\.\\d{1,3}+\\.\\d{1,3}");
}
/**
* 检查QQ是否 合法,必须是数字,且首位不能为0,最长15位
*
* @param text
* @return
*/
public static boolean checkQQ(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("[1-9][0-9]{4,13}");
}
/**
* 检查邮编是否 合法
*
* @param text
* @return
*/
public static boolean checkPostCode(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("[1-9]\\d{5}(?!\\d)");
}
/**
* 检查身份证是 否合法,15位或18位(或者最后一位为X)
*
* @param text
* @return
*/
public static boolean checkIDCard(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("\\d{15}|\\d{18}|(\\d{17}[x|X])");
}
/**
* 检查输入是否 超出规定长度
*
* @param length
* @param text
* @return
*/
public static boolean checkLength(String text, int length) {
return ((StringUtil.isNullOrEmpty(text)) ? 0 : text.length()) <= length;
}
/**
* 判断是否为数字
* @param text
* @return
*/
public static boolean isNumber(String text) {
if(StringUtil.isNullOrEmpty(text))return false;
return text.matches("^[-+]?(([0-9]+)([.]([0-9]+))?|([.]([0-9]+))?)$");
}
/**
* 找出两个数组中不相同的元素
*
* @param t1
* @param t2
* @return
*/
public static <t> List<t> compare(List<t> t1, List<t> t2) {
List<t> list2 = new ArrayList<t>();
for (T t : t2) {
if (!t1.contains(t)) {
list2.add(t);
}
}
return list2;
}
}
版权声明:本文为qq_37529302原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。