java_中英文在不同编码下所占用的字节数(转)

Java代码
import java.io.UnsupportedEncodingException;
public class EncodeTest {
/**
* 打印字符串在指定编码下的字节数和编码名称到控制台
*
* @param s
* 字符串
* @param encodingName
* 编码格式
*/
public static void printByteLength(String s, String encodingName) {
System.out.print(“字节数:”);
try {
System.out.print(s.getBytes(encodingName).length);
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
System.out.println(“;编码:” + encodingName);
}
public static void main(String[] args) {
String en = “A”;
String ch = “人”;
// 计算一个英文字母在各种编码下的字节数
System.out.println(“英文字母:” + en);
EncodeTest.printByteLength(en, “GB2312″);
EncodeTest.printByteLength(en, “GBK”);
EncodeTest.printByteLength(en, “GB18030″);
EncodeTest.printByteLength(en, “ISO-8859-1″);
EncodeTest.printByteLength(en, “UTF-8″);
EncodeTest.printByteLength(en, “UTF-16″);
EncodeTest.printByteLength(en, “UTF-16BE”);
EncodeTest.printByteLength(en, “UTF-16LE”);
System.out.println();
// 计算一个中文汉字在各种编码下的字节数
System.out.println(“中文汉字:” + ch);
EncodeTest.printByteLength(ch, “GB2312″);
EncodeTest.printByteLength(ch, “GBK”);
EncodeTest.printByteLength(ch, “GB18030″);
EncodeTest.printByteLength(ch, “ISO-8859-1″);
EncodeTest.printByteLength(ch, “UTF-8″);
EncodeTest.printByteLength(ch, “UTF-16″);
EncodeTest.printByteLength(ch, “UTF-16BE”);
EncodeTest.printByteLength(ch, “UTF-16LE”);
}
}

运行结果如下:
1. 英文字母:A
2. 字节数:1;编码:GB2312
3. 字节数:1;编码:GBK
4. 字节数:1;编码:GB18030
5. 字节数:1;编码:ISO-8859-1
6. 字节数:1;编码:UTF-8
7. 字节数:4;编码:UTF-16
8. 字节数:2;编码:UTF-16BE
9. 字节数:2;编码:UTF-16LE
10.
11. 中文汉字:人
12. 字节数:2;编码:GB2312
13. 字节数:2;编码:GBK
14. 字节数:2;编码:GB18030
15. 字节数:1;编码:ISO-8859-1
16. 字节数:3;编码:UTF-8
17. 字节数:4;编码:UTF-16
18. 字节数:2;编码:UTF-16BE
19. 字节数:2;编码:UTF-16LE
UTF-16BE和UTF-16LE是UNICODE编码家族的两个成员。UNICODE标准定义了UTF-8、UTF-16、UTF-32三种编码格式,共有UTF-8、UTF-16、UTF-16BE、UTF-16LE、UTF-32、UTF-32BE、UTF-32LE七种编码方案。
JAVA所采用的编码方案是UTF-16BE。
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值