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

java 文件操作

时间:2016-06-13 15:00:58      阅读:173      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!