欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java 区分文本中的中英文字符函数

程序员文章站 2023-11-29 09:16:52
复制代码 代码如下:public class encntest   {   public static void main(string args[])   {   byt...

复制代码 代码如下:

public class encntest
  {
  public static void main(string args[])
  {
  byte buf[] = args[0].getbytes();
  boolean halfchinese = false;
  for(int i=0;i
  {
  if(halfchinese)
  {
  byte ch[] = {buf[i-1],buf[i]};
  system.out.println("索引"+(i-1)+"位置为中文("+new string(ch)+")");
  halfchinese = false;
  continue;
  }
  if((buf[i] & 0x80) == 0)
  {
  system.out.println("索引"+i+"位置是英文("+(char)buf[i]+")");
  }
  else
  {
  halfchinese = true;
  }
  }
  }
  }