1
2
3
//把字符串转化为字节数组
Strings="慕课ABC";
byte[] bytes1=s.getBytes();
1
2
3
for(byte b:bytes1){
//把字节(转换成了int)以16进制的方式显示
System.outprintln(Integer.toHexstring(b&Oxff));//0xff--把前面24个零去掉,只留下后八位
gbk--中文占用2个字节,英文占用1个字节
utf-8--中文占用3个字节,英文占用1个字节
utf-16be--中文占用2个字节,英文占用2个字节
2
3
//把字符串转化为字节数组
Strings="慕课ABC";
byte[] bytes1=s.getBytes();
1
2
3
for(byte b:bytes1){
//把字节(转换成了int)以16进制的方式显示
System.outprintln(Integer.toHexstring(b&Oxff));//0xff--把前面24个零去掉,只留下后八位
gbk--中文占用2个字节,英文占用1个字节
utf-8--中文占用3个字节,英文占用1个字节
utf-16be--中文占用2个字节,英文占用2个字节