Потому что
File file = new File("D:\\1.txt"); Scanner scanner = null; try { scanner = new Scanner(file); } catch (FileNotFoundException e) { throw new RuntimeException(e); } String str = scanner.next(); scanner.close(); System.out.println(str);
Обсуждают сегодня