진도가느려서 고생이네요ㅠㅠ
파일 쓰기 프로그램이다. 예외처리로 프로그램을 완성하시오.
import java.io.*;
public class FileWriterExample{
public static void main(String[] args) {
int c;
FileWriter out = new FileWriter("output.txt");
System.out.println("저장할 내용을 입력후 ctrl+z를 누르세요.");
while((c = System.in.read()) != -1) {
out.write(c);
}
out.close();
System.out.println();
}
}
sehongpark님의 답변
질문이 잘 이해가 안가네요 :(