[b][color=blue]
以下这段既可判断输入的字符串是否全为中文,如果有其他字符,则返回true
/**
* 判断字符中是否全是中文
* @param str
* @return
*/
public static boolean isHaveChinese(String str) {
for (int i = 0; i < str.length(); i++) {
char ss = str.charAt(i);
boolean s = String.valueOf(ss).matches("[\u4e00-\u9fa5]");
if (!s) {
return true ;
}
}
return false;
}[/color][/b]
以下这段既可判断输入的字符串是否全为中文,如果有其他字符,则返回true
/**
* 判断字符中是否全是中文
* @param str
* @return
*/
public static boolean isHaveChinese(String str) {
for (int i = 0; i < str.length(); i++) {
char ss = str.charAt(i);
boolean s = String.valueOf(ss).matches("[\u4e00-\u9fa5]");
if (!s) {
return true ;
}
}
return false;
}[/color][/b]