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

【Java】读写文本文件

时间:2017-09-02 21:49:36      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:java   bytes   puts   文本   public   buffer   his   col   写文本   

package rw;
 
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStreamReader;
 
public class test {
    public static void main(String[] agrc) throws IOException
    {
        //写入文件
        FileOutputStream out = new FileOutputStream("test.txt");       
        for(int i=0;i<100;i++)
        {
            String s = "this line is " + i+"\n";       
            out.write(s.getBytes());       
        }
        out.close();
             
        //读取文件
        FileInputStream in = new FileInputStream("test.txt"); // 读取文件路径 
        BufferedReader br = new BufferedReader(new InputStreamReader(in)); 
        for(int i=0;i<100;i++)
        {
            String line = br.readLine();
            System.out.println(line);      
        }  
        br.close();
        in.close();
    }  
}

 

【Java】读写文本文件

标签:java   bytes   puts   文本   public   buffer   his   col   写文本   

原文地址:http://www.cnblogs.com/tiandsp/p/7467878.html

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