We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0225037 commit deea919Copy full SHA for deea919
src/com/codefortomorrow/advanced/chapter14/examples/FileIO.java
@@ -1,4 +1,4 @@
1
-package com.codefortomorrow.advanced.chapter14.examples
+package com.codefortomorrow.advanced.chapter14.examples;
2
import java.io.*;
3
4
public class FileIO {
@@ -7,7 +7,7 @@ public static void main(String[] args) throws IOException {
7
FileInputStream in = null;
8
FileOutputStream out = null;
9
File file = new File("names.txt");
10
-
+
11
try {
12
in = new FileInputStream(file);
13
out = new FileOutputStream("names_upper.txt");
0 commit comments