资源预览内容
第1页 / 共4页
第2页 / 共4页
第3页 / 共4页
第4页 / 共4页
亲,该文档总共4页全部预览完了,如果喜欢就下载吧!
资源描述
java字符编码探究相关小函数* UTF-16 charset 使用 16 位量,因此对字节挨次敏感。 流的字节挨次可以由 Unicode 字符 uFEFF* 所表示的初始字节挨次标记 来指示。* UTF-16BE 16 位 UCS 转换格式,Big Endian(最低地址存放高位字节)字节挨次* UTF-16LE 16 位 UCS* 转换格式,Little-endian(地址存放低位字节)字节挨次* java中 假如没有feff的标志,则默认为 feff* throws UnsupportedEncodingException*/void unicodeShow() throws UnsupportedEncodingException String shz;byte hz;hz = new byte4;hz0 = (byte) 0xfe;hz1 = (byte) 0xff;hz2 = 0x55;hz3 = 0x4a;shz = new String(hz, “utf-16“);System.out.println(shz);hz = new byte2;hz0 = 0x55;hz1 = 0x4a;shz = new String(hz, “utf-16“);System.out.println(shz);hz = new byte2;hz0 = 0x55;hz1 = 0x4a;shz = new String(hz, “utf-16be“);System.out.println(shz);hz = new byte4;hz0 = (byte) 0xff;hz1 = (byte) 0xfe;hz2 = 0x4a;hz3 = 0x55;shz = new String(hz, “utf-16“);System.out.println(shz);hz = new byte2;hz0 = 0x4a;hz1 = 0x55;shz = new String(hz, “utf-16le“);System.out.println(shz);System.out.println(“啊 UNICODE:U+554A“);System.out.print(Integer.toHexString(“啊“.charAt(0) 8System.out.print(“ “);System.out.print(Integer.toHexString(“啊“.charAt(0)System.out.println();for (byte i : “啊“.getBytes(“utf-16“)System.out.print(Integer.toHexString(iSystem.out.println();for (byte i : “啊“.getBytes(“utf-16be“)System.out.print(Integer.toHexString(iSystem.out.println();for (byte i : “啊“.getBytes(“utf-16le“)System.out.print(Integer.toHexString(iSystem.out.println();
收藏 下载该资源
网站客服QQ:2055934822
金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号