首页 > 编程语言 > 详细

java 文件操作

时间:2016-06-13 15:00:29      阅读:97      评论:0      收藏:0      [点我收藏+]

1.按行读取

     File file = new File(“your path”);
        BufferedReader reader = null;
        try {
            //System.out.println("以行为单位读取文件内容,一次读一整行:");
            reader = new BufferedReader(new FileReader(file));
            String tempString = null;
            // 一次读入一行,直到读入null为文件结束
            while ((tempString = reader.readLine()) != null) {
                System.out.println(tempString);
                // your code
                
            }
            
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                }
            }
        }

 

java 文件操作

原文:http://www.cnblogs.com/chenhuan001/p/5580347.html

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