import java.io.*;
class A {
public static void main(String args[]) throws Exception {
String str="가나다";
FileOutputStream fos = new FileOutputStream("c:/aaa/a.txt");
fos.write(str.getBytes());
}
}
'개발하자 > JAVA중급' 카테고리의 다른 글
cmd창에 입력한 글자 보내기 (0) | 2015.01.31 |
---|---|
파일저장 (0) | 2015.01.31 |
파일에 문자 쓰기 (0) | 2015.01.31 |
FileDialog 파일내용 불러오기(자원해제도) (0) | 2015.01.31 |
파일내용 읽어오기(한글) (0) | 2015.01.31 |