Untitled
unknown
java
5 years ago
911 B
7
Indexable
import java.io.*;
import java.lang.*;
import java.nio.charset.StandardCharsets;
public class Main {
public static void main(String[] args) {
InputStream in = null;
try {
in = new FileInputStream("in.txt");
byte[] bytes = new byte[in.available()];
in.read(bytes);
for (int i = 0; i < bytes.length; i++) {
System.out.write(bytes[i]);
}
}
catch (IOException ex) {
System.out.println(ex);
}
finally {
try {
if(in != null) {
in.close();
}
}
catch (IOException ex) {
System.out.println(ex);
}
}
System.out.flush();
}
}
Editor is loading...