/* * 파일에 기록하기 세번째 * 파일 전체를 다시쓰지 않고 덧붙이는 경우에 사용한다. */ public void setEvent3(String filename, String str) { try { RandomAccessFile rFile = new RandomAccessFile(filename,"rw"); //r, w, rw rFile.seek(rFile.length()); rFile.write(str.getBytes()); rFile.close(); } catch (IOException e) { e.printStackTrace(); } } 랜덤엑세스파일을 사용하면 원하는 부분에 추가/삭제를 할 수 있다..!!! |
댓글 없음:
댓글 쓰기