码迷,mamicode.com
首页 > 其他好文 > 详细

021.4 IO流——字节、字符桥梁(编码解码)

时间:2018-05-02 03:00:36      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:throws   txt   har   adc   except   ati   color   utf8   reader   

默认使用的就是gbk编码,这里的例子改成了utf8编码

写入—编码

private static void writeText() throws IOException
{
    FileOutputStream fos = new FileOutputStream("utf8.txt");
    OutputStreamWriter osw = new OutputStreamWriter(fos,"UTF-8");
    osw.write("求");
    osw.close();
}

读取—解码

private static void readCNText() throws IOException
{
    FileInputStream fis = new FileInputStream("utf8.txt");
    InputStreamReader isr = new InputStreamReader(fis,"UTF-8");
    int i = 0;
    while((i = isr.read())!=-1){
        System.out.println((char)i);
    }
    isr.close();
}

 

字符流 = 字节流 + 编码表


#####################快捷操作的类
FileWriter  and   FileReader

021.4 IO流——字节、字符桥梁(编码解码)

标签:throws   txt   har   adc   except   ati   color   utf8   reader   

原文地址:https://www.cnblogs.com/-nbloser/p/8978065.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!