OnJava8-Examples/io/FileOutputShortcut.java

23 lines
703 B
Java
Raw Normal View History

2015-04-20 15:36:01 -07:00
//: io/FileOutputShortcut.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 FileOutputShortcut {
static String file = "FileOutputShortcut.out";
public static void main(String[] args)
throws IOException {
BufferedReader in = new BufferedReader(
2015-06-03 11:41:10 -07:00
new StringReader(BufferedInputFile.read(
"FileOutputShortcut.java")));
// Here's the shortcut:
try(PrintWriter out = new PrintWriter(file)) {
2015-05-05 14:05:39 -07:00
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) *///:~