/**
* 根据正则表达式判断字符是否为汉字
* 字符串中包含汉字时返回true
*/
public static boolean hasChinese(String value) {
// 汉字的Unicode取值范围
String regex = "[\u4e00-\u9fa5]";
Pattern pattern = Pattern.compile(regex);
Matcher match = pattern.matcher(value);
return match.find();
}