码迷,mamicode.com
首页 > 编程语言 > 详细

java--字节流和字符流的转换

时间:2018-04-12 20:48:04      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:edr   java   null   throw   字符   import   inpu   win10   int   

 

 

package com.machuang.convertStream;

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

public class Demo01 {
    
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader( 
                new InputStreamReader(
                    new FileInputStream( // a.txt 以utf-8编码集保存字符
                            new File("F:/win10/test/a.txt") ), "UTF-8" ) );
        
        String str = null;
        while(null != (str = reader.readLine())) {
            System.out.println(str);
        }
        
        reader.close();
    }
    
}

 

java--字节流和字符流的转换

标签:edr   java   null   throw   字符   import   inpu   win10   int   

原文地址:https://www.cnblogs.com/cappuccinom/p/8810036.html

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