2015-04-20 15:36:01 -07:00
|
|
|
|
//: io/BasicFileOutput.java
|
2015-05-29 14:18:51 -07:00
|
|
|
|
// <20>2015 MindView LLC: see Copyright.txt
|
2015-04-20 15:36:01 -07:00
|
|
|
|
import java.io.*;
|
|
|
|
|
|
|
|
|
|
public class BasicFileOutput {
|
|
|
|
|
static String file = "BasicFileOutput.out";
|
|
|
|
|
public static void main(String[] args)
|
|
|
|
|
throws IOException {
|
|
|
|
|
BufferedReader in = new BufferedReader(
|
|
|
|
|
new StringReader(
|
|
|
|
|
BufferedInputFile.read("BasicFileOutput.java")));
|
2015-05-05 14:05:39 -07:00
|
|
|
|
try (PrintWriter out = new PrintWriter(
|
|
|
|
|
new BufferedWriter(new FileWriter(file)))) {
|
|
|
|
|
int lineCount = 1;
|
|
|
|
|
String s;
|
|
|
|
|
while((s = in.readLine()) != null )
|
|
|
|
|
out.println(lineCount++ + ": " + s);
|
|
|
|
|
}
|
2015-04-20 15:36:01 -07:00
|
|
|
|
// Show the stored file:
|
|
|
|
|
System.out.println(BufferedInputFile.read(file));
|
|
|
|
|
}
|
|
|
|
|
} /* (Execute to see output) *///:~
|