为了账号安全,请及时绑定邮箱和手机立即绑定

为什么我没有转化成String也可以正常读取???

public static void iprByCharArray(File file) throws IOException {
    if(!file.exists()){
        throw new IllegalArgumentException("文件不存在");
    }
    if(!file.isFile()){
        throw new IllegalArgumentException("不是文件");
    }
    FileInputStream in=new FileInputStream(file);
    InputStreamReader ipr=new InputStreamReader(in);
    int c;
    char[] chars=new char[2*1024];
    System.out.println("字符流批量读取");
    while ((c=ipr.read(chars,0,chars.length))!=(-1)){
        System.out.print(chars);
    }
}



正在回答

2 回答

楼上+1



1 回复 有任何疑惑可以回复我~

字符流,读出来是个字符啊,一串字符不就是字符串了吗

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么我没有转化成String也可以正常读取???

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信