public static byte[] STR_chinese2char(String s)
  {
    try
    {
      byte[] b = s.getBytes("iso-8859-1");
      for(int i=0;i<b.length;i++)
      {
        System.out.print((256+(int)b[i])+" ");
      }
      return b;
    }catch(Exception e){return null;}
  }