java 文件的编码 问题

package com.io;

public class Encodedemo {

    public static void main(String[] args)throws Exception{
        // TODO Auto-generated method stub
        String s ="中国ABC";
        byte[] bytes1 = s.getBytes();//转换成字节序列用的是项目默认的字节编码
        for(byte b:bytes1){
            //把字节转换成int 以16进制的方式显示
            System.out.print(Integer.toHexString(b&0xff)+" ");
        }
        System.out.println();
        byte[] bytes2 = s.getBytes("gbk");
        //gbk编码中文占用2个字节,英文占用1个字节
        for(byte b:bytes2){
            //把字节转换成int 以16进制的方式显示
            System.out.print(Integer.toHexString(b&0xff)+" ");
        }
        
        System.out.println();
        byte[] bytes3 = s.getBytes("utf-8");
        //utf-8编码中文占用3个字节,英文占用1个字节
        for(byte b:bytes3){
            //把字节转换成int 以16进制的方式显示
            System.out.print(Integer.toHexString(b&0xff)+" ");
        }
        //java 是双字节编码 utf-16be
        //utf-16be中文占用2个字节,英文占用2个字节
        System.out.println();
        byte[] bytes4 = s.getBytes("utf-16be");
        //utf-8编码中文占用3个字节,英文占用1个字节
        for(byte b:bytes4){
            //把字节转换成int 以16进制的方式显示
            System.out.print(Integer.toHexString(b&0xff)+" ");
        }
        System.out.println();
        /*
         * 当你的字节序列是某种编码是,这个时候想把字节序列变成
         * 字符串,也需要用这种编码方式,否者会出现乱码
         */
        String str1 = new String(bytes4);
        System.out.println(str1);
        String str2 = new String(bytes4,"utf-16be");
        System.out.println(str2);
        /*
         * 文本文件 就是字节序列
         * 可以是任意编码的字节序列
         * 如果我们在中文机器上直接创建文本文件  直接创建
         * 那么该文本文件只认识ANSI编码
         * 联通、联这是一种巧合,他们正好符合了utf-8编码的规制
         */
    }
    

}

 

转载于:https://www.cnblogs.com/loveincode/p/4491132.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值