java BufferedWriter and BufferedReader

//Listing 5-2. Demonstrating the BufferedWriter and BufferedReader Classes
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;

public class BWBRDemo {
    static String[] lines = {
            "It was the best of times, it was the worst of times,",
            "it was the age of wisdom, it was the age of foolishness,",
            "it was the epoch of belief, it was the epoch of incredulity,",
            "it was the season of Light, it was the season of Darkness,",
            "it was the spring of hope, it was the winter of despair." };

    public static void main(String[] args) throws IOException {
        try (BufferedWriter bw = new BufferedWriter(new FileWriter("temp"))) {
            for (String line : lines) {
                bw.write(line, 0, line.length());
                bw.newLine();
            }
        }
        try (BufferedReader br = new BufferedReader(new FileReader("temp"))) {
            String line;
            while ((line = br.readLine()) != null)
                System.out.println(line);
        }
    }
}
原文地址:https://www.cnblogs.com/rojas/p/5408348.html