import java.io.*;
public class filewrite {
public static void main(String args[]){
try {
BufferedWriter out = new BufferedWriter(new FileWriter("out.txt");
String s = "출력 파일이 저장될 문자열";
out.write(s); out.newLine();
out.write(s); out.newLine();
out.close();
}catch (IOException e) {
System.err.println(e);
System.exit(1)
}
}
}
'Java' 카테고리의 다른 글
메모장으로 자바 프로그램 작성하기 (0) | 2017.09.19 |
---|---|
JAVA 환경변수 설정 되어 있는지 확인하기 (0) | 2017.09.19 |
자바 해시코드 / java hashcode (0) | 2017.09.18 |
자바 native 키워드 (0) | 2017.09.18 |
Arraylist , Vector , Object[] , Hashmap , Treemap 중에서 어떤 것을 선택 할 것인가? (0) | 2017.09.18 |
댓글