byte[] bytes3=s.getBytes("utf_8");//项目默认gbk编码
//utf_8编码中文占用3个字节,英文占用1个字节
for(byte b:bytes3) {
System.out.print(Integer.toHexString(b & 0xff)+" ");
}
报错:
java.io.UnsupportedEncodingException: utf_8
utf-8吧?