본문 바로가기

개발하자/JAVA중급

파일에 문자 쓰기

import java.io.*;

class A{
 public static void main(String args[]) throws Exception{
 FileOutputStream fos=new FileOutputStream("c:/aaa/a.txt");    //없으면 파일생성
 fos.write(65);    //A
 fos.write(66);    //B
 }
}

'개발하자 > JAVA중급' 카테고리의 다른 글

파일저장  (0) 2015.01.31
파일내용 입력하기  (0) 2015.01.31
FileDialog 파일내용 불러오기(자원해제도)  (0) 2015.01.31
파일내용 읽어오기(한글)  (0) 2015.01.31
파일내용 읽어오기(영어만가능)  (0) 2015.01.31