检测字符串中是否带汉字中文
public static void main(String[] args) throws Exception {
String str = "6546dsfasf--3=的5";
if (str.getBytes().length == str.length()) {
System.out.println("不带汉字");
} else {
System.out.println("带汉字");
}
}