qq_宝慕林1145173
2019-07-15 22:46
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吧?
文件传输基础——Java IO流
133755 学习 · 1030 问题
相似问题