- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[JAVA] txt파일 이어쓰기 본문
public static void WriteLog()
{
String logPath = "C:\\app\\log.txt"; //파일 경로
File templog = new File(logPath);
try {
if(!templog.exists())//해당경로에 파일있는 없는 경우 생성
templog.createNewFile();
RandomAccessFile raf = new RandomAccessFile(logPath, "rw"); //이어쓰기용
raf.seek(raf.length());//맨마지막 위치로 커서 이동
SimpleDateFormat SDF = new SimpleDateFormat(); //시간값 얻기
String str = "\r\n현재시간은 "+SDF.format(System.currentTimeMillis()); //기록할 글
String r_str = new String(str.getBytes("KSC5601"),"8859_1");//그냥 str을 사용하게되면
//RandomAccessFile은 한글이 깨진다.
//따라서 Encoding 작업이 필요하다.
raf.writeBytes(r_str);
raf.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
{
String logPath = "C:\\app\\log.txt"; //파일 경로
File templog = new File(logPath);
try {
if(!templog.exists())//해당경로에 파일있는 없는 경우 생성
templog.createNewFile();
RandomAccessFile raf = new RandomAccessFile(logPath, "rw"); //이어쓰기용
raf.seek(raf.length());//맨마지막 위치로 커서 이동
SimpleDateFormat SDF = new SimpleDateFormat(); //시간값 얻기
String str = "\r\n현재시간은 "+SDF.format(System.currentTimeMillis()); //기록할 글
String r_str = new String(str.getBytes("KSC5601"),"8859_1");//그냥 str을 사용하게되면
//RandomAccessFile은 한글이 깨진다.
//따라서 Encoding 작업이 필요하다.
raf.writeBytes(r_str);
raf.close();
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
[출처] http://blog.naver.com/PostView.nhn?blogId=monk773&logNo=90156551394
'★─Programing > ☆─JAVA' 카테고리의 다른 글
[JAVA] File.createNewFile() 호출시 발생하는 InvalidArgumentException (0) | 2013.06.04 |
---|---|
[JAVA] 자바 정규식 특수문자 (1) | 2013.06.04 |
[JAVA] callback function이 필요하다면 interface를 이용하자 (3) | 2013.06.03 |
[JAVA] 예외의 printStacktrace의 값을 String으로 얻기 (0) | 2013.05.31 |
[JAVA] 대소문자 구분 없이 문자열 바꾸기/치환 (0) | 2013.05.21 |
Comments