분류 전체보기 37

[JAVA] 파일 입출력

File file = new File("input.txt"); try { Scanner sc = new Scanner(file); while (sc.hasNextInt()) { System.out.println(sc.nextInt() * 100); } sc.close(); } catch (FileNotFoundException e) { System.out.println("파일을 읽어오는 도중에 오류가 발생했습니다."); } } } 이것을 실행시키려면 Create a new file resource를 해준다. 70 580 30 102 503 이라는 값을 넣고 저장한뒤 실행하면 *100이 곱해져 7000 58000 3000 10200 50300 값이 나오게된다.

IT/Java 2020.12.08