首页 > 其他 > 详细

InputStreamReader

时间:2019-02-11 17:57:13      阅读:155      评论:0      收藏:0      [点我收藏+]

public class Test {

  public static void main(String[] args) throws IOException {

    //转换流以单个英文或单个中文为一个字符读取可直接转换为char类型输出
    InputStreamReader input=new InputStreamReader(new FileInputStream("xxx.txt"));
    int tem;
    while((tem=input.read())!=-1){
      System.out.print((char)tem);
    }
    input.close();

  }
}

InputStreamReader

原文:https://www.cnblogs.com/li19941999/p/10362558.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!