Untitled
unknown
java
4 years ago
911 B
4
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...