java字符编码探究相关小函数.docx

上传人:ni****g 文档编号:563803782 上传时间:2023-09-20 格式:DOCX 页数:4 大小:12.10KB
返回 下载 相关 举报
java字符编码探究相关小函数.docx_第1页
第1页 / 共4页
java字符编码探究相关小函数.docx_第2页
第2页 / 共4页
java字符编码探究相关小函数.docx_第3页
第3页 / 共4页
java字符编码探究相关小函数.docx_第4页
第4页 / 共4页
亲,该文档总共4页,全部预览完了,如果喜欢就下载吧!
资源描述

《java字符编码探究相关小函数.docx》由会员分享,可在线阅读,更多相关《java字符编码探究相关小函数.docx(4页珍藏版)》请在金锄头文库上搜索。

1、 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 Unsu

2、pportedEncodingException 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

3、;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(“

4、啊 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();

展开阅读全文
相关资源
正为您匹配相似的精品文档
相关搜索

最新文档


当前位置:首页 > 高等教育 > 习题/试题

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号