public class chinese
{
public static void main (String [] args)
{
chinese ch=new chinese();
boolean st=ch.hasChinese("谢谢");
System.out.println(st);

}
public static boolean hasChinese(String value) {
    boolean blFind;     blFind = false;
    byte[] valueBytes = value.getBytes();  
    for (int j = 0; j < value.length(); j++) {
      if (valueBytes[j] < 0)
       { 
        blFind = true;
        break;
      }
    }
    return blFind;
  }
}