字符的 编码 解码 ,文件读入解码

package jp.co.unisys.energy.bems.test.io;

import java.io.BufferedReader;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;

public class Decode {

    /**
     * 字符-->字节  编码
     * 字节-->字符  解码
     * @param args
     * @throws IOException
     */
    public static void main(String[] args) throws IOException {
        String str = "中国";
        // 编码utf-8
        byte[] b = str.getBytes("utf-8");
        // 解码US-ASCII
        String strDecode = new String(b,"US-ASCII");
        // 打印乱码因为编码和解码的字符集不一致
        System.out.println(strDecode);
        // 必须知道源文件的编码格式
        File src = new File("e:/test/b.txt");
        decode(src);
        
    }
    public static void decode(File src) throws IOException {
        // 源文件的编码字符集为unicode
        BufferedReader is = new BufferedReader(new InputStreamReader(new FileInputStream(src),"unicode"));
        String str;
        while(null != (str = is.readLine())) {
            System.out.println(new String(str));
        }
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值