본문 바로가기

개발하자/JAVA중급

FileOutputStream

import java.io.FileOutputStream;

class Server {
 public static void main(String args[]) throws Exception {
  FileOutputStream fi = new FileOutputStream("c:/aaa/b.txt");
  String str = "가나다";
  byte[] b = str.getBytes(); // str을 바이트로 변환시켜서 배열에 넣어줌
  fi.write(b);
 }
}

 

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

awt PopupMenu  (0) 2015.02.06
단방향 채팅 (서버->클라이언트)  (0) 2015.01.31
서버에서 입력할때 엔터칠때마다 보내지는 소스  (0) 2015.01.31
스캐너  (0) 2015.01.31
cmd창에 입력한 글자 보내기  (0) 2015.01.31