package MCP;
import java.io.*;
public class Write_Text_Test { /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
File file1 = new File("c:/testText1.txt");
File file2 = new File("c:/testText2.txt");
FileWriter fileWriterTest = null;
PrintWriter newLineTest = null;
try{
fileWriterTest = new FileWriter(file1);
String text = "참 잘했어요";
fileWriterTest.write(text);
fileWriterTest.flush();
//1번 방법
newLineTest = new PrintWriter(file2);
newLineTest.println(text);
newLineTest.println(text);
newLineTest.flush();
//2번 방법 (한줄 개행이 됩니다.)
// 남책임님이시면 차이점은 바로 아실거라고 생각되어 두가지 경우를 넣습니다.
// 저는 보통 2번째를 사용했는데요... 어떤게 필요하실지 몰라서 두가지 소스를 다 넣습니다.
}catch(Exception e){
e.printStackTrace();
}finally{
try{
if(fileWriterTest != null){ fileWriterTest.close();}
if(newLineTest != null){ fileWriterTest.close();}
}catch(Exception ee){
ee.printStackTrace();
}
}
}}
'JAVA' 카테고리의 다른 글
유닉스에서 JFReeChart 에러 문제 (0) | 2009.03.28 |
---|---|
자바로 FTP Client 구현 (put, get) (4) | 2009.03.03 |
[ JAVA ] 로그 파일 만들어주는 로직 (2) | 2009.02.16 |
자바 로 xml 문서의 dom 파싱 (0) | 2009.02.12 |
자바 폴더 삭제 (2) | 2009.02.11 |
댓글