오늘은 자바 입출력에 대해 정리하겠습니다. *입력/출력은 cpu기준입니다.* 입력: cpu에 입력(콘솔창에 입력) 출력: cpu에서 외부에 출력(ex: txt파일) import java.io.*; //텍스트 출력 public class Test01 { public static void main(String[] args) throws IOException{ File dir = new File("C:\\**\\***"); File file = new File(dir,"aaa.txt"); File dir = new File("경로") 경로 설정 File file = new File(dir,"aaa.txt"); 경로에 있는 텍스트 파일을 찾는데, 만약 파일이 없다면 FileNotFoundException 에러가..