public static char[] bytesToChars(byte[] bytes) { String s=new String(bytes); char chars[]=s.toCharArray(); return chars; }