java判断是否是中文
展开全部
public class Demo {
public static void main(String[] args) {
String str = "abc我爱你";
for (int i = 0; i < str.length(); i++) {
String s = str.substring(i, i + 1);
byte[] b = s.getBytes();
if (b.length == 1) {
System.out.println(s + ":是英文");
} else {
System.out.println(s + ":是中文");
}
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询