Java读写文本文件

Posted Dsp Tian

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java读写文本文件相关的知识,希望对你有一定的参考价值。

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远程读写文件详解

java读写同一个文件

java 中简述使用流进行读写文本文件的步骤?

Java读写大文本文件(2GB以上)

Java实验使用GUI实现文本文件读写显示

Java读写文本文件