## 자바 파일 읽고 쓰기
아래와 같이 데이터를 입력받아 파일로 쓰고 다시 불러올 수 있게 하고 싶습니다.
```
System.out.println(">>고객님의 휴대폰 뒤 4자리를 입력해주세요.");
Scanner scan1 = new Scanner(System.in);
int number = scan1.nextInt();
System.out.println();
System.out.println(">>고객님의 성함을 입력해 주세요.");
String name = scan1.next();
```
IO쓰는 건 아는데 어찌써야하느요?
sehongpark님의 답변
## 자바 I/O 예제
+ https://goo.gl/SXQH5u
위 링크에서 text read , text write 부분을 학습해보세요.