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

Reader字符流读取文件内容---实例

时间:2018-06-03 17:34:06      阅读:147      评论:0      收藏:0      [点我收藏+]

标签:返回   强制转换   div   string类   对象   static   读取文件   inf   inpu   

import java.io.*;
public class File4{
    public static void main(String[] args)throws Exception{       //抛出异常,不处理
        File f=new File("e:"+File.separator+"test.txt");        //选择e:test.txt的文件创建对象
        Reader input=new FileReader(f);
        char b[]=new char[(int)f.length()];    //定义一个char数组,数组大小由文件大小决定
        System.out.println("数组长度为:"+input.read(b));  //读取数组内容到b数组中,并返回数组长度
        System.out.println(new String(b));   //将char类型b数组强制转换为String类型            
        input.close();                    //关闭数据流
    }
}  

技术分享图片

 

技术分享图片

 

Reader字符流读取文件内容---实例

标签:返回   强制转换   div   string类   对象   static   读取文件   inf   inpu   

原文地址:https://www.cnblogs.com/l666/p/9129436.html

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