system.out.println 의 목적지를 화면이 아닌 파일로 저장하고자 할 때의 예제
- OS & Program/JAVA
- 2013. 4. 11. 15:14
/*
* 문서번호: 20130411-1512
* 검색어: nabiro, java, println, system.out.println, 화면, 파일, 저장
* 출처
*/
import java.io.*;
public class MyMainClass {
public static void main(String[] args) throws FileNotFoundException {
// TODO Auto-generated method stub
//File file = new File("/home/sajid/sysout.log");
File file = new File("c:\\sysout.log");
PrintStream printStream = new PrintStream(new FileOutputStream(file));
System.out.println("1"); // 화면으로 1 이라는 문자가 표시된다.
System.setOut(printStream);
System.out.println("2"); // c:\sysout.log 파일로 2 라는 문자가 표시된다.
}
}
'OS & Program > JAVA' 카테고리의 다른 글
ant 빌드시 utf-8 관련 문제 해결 방법 (0) | 2012.11.28 |
---|---|
eclipse 에서 ant를 이용하여 ftp upload 할 때 필요한 commons-net-1.4.1.jar 파일 관련 정보 (0) | 2011.09.27 |
eclipse 에서 프로젝트에 대한 설정정보가 저장된 파일 (0) | 2011.08.25 |
이클립스에서 PermGen space 에러나오는 경우 대처 방법 (0) | 2011.08.16 |
ant 를 이용하여 특정한 java 파일만을 빌드하는 방법 (0) | 2011.03.09 |