Java System setErr()方法

java.lang.System.setErr() 方法重新分配“标准”错误输出流。

1 语法

public static void setErr(PrintStream err)

2 参数

err : 这是新的标准错误输出流。

3 返回值

此方法不返回任何值。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java System setErr()方法
 */
import java.lang.*;

public class SystemDemo {

   public static void main(String[] args) throws Exception {

     // create a file
     FileOutputStream f = new FileOutputStream("file.txt");
        
     System.setErr(new PrintStream(f));
     // redirect the output
     System.err.println("This will get redirected to file");
   }
} 

假设我们有被作为的示例程序的输出生成一个文本文件file.txt。该文件的内容包括:

This will get redirected to file

 

热门文章

优秀文章