编码总结

Java字节码在不同编码方式下的长度比较
public static void main(String args[]) {

		try {
			byte[] b = "汉字a".getBytes("Unicode");

			System.out.println(b.length);
			b = "汉字a".getBytes("GBK");

			System.out.println(b.length);
			b = "汉字a".getBytes("UTF-8");

			System.out.println(b.length);
		} catch (UnsupportedEncodingException e) {
			// TODO Auto-generated catch block
			e.printStackTrace();
		}

	}


Unicode 所有字符2个字节编码+2个字节头

UTF-8 汉字*3 字符*1

gbk/gb2312 汉字*2 字符*1


所以是8

5

7

-----

static void show(byte[] b) {
for (int i = 0; i < b.length; i++)

System.out.print(Integer.toBinaryString(b[i]&0xff)+“ ”);
     
}

以汉字汉为例

unicode 

11111110 11111111 1101100 1001001 ---4 unicode

10111010 10111010 ---2 gbk
11100110 10110001 10001001 ---3utf-8

utf-8 1110xxx 3个字节就是3个1

10xxxxxx

10xxxxxx


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值