位置:首頁 > Java技術 > java.lang > java.lang.System.setErr()方法實例

java.lang.System.setErr()方法實例

java.lang.System.setErr() 方法重新分配“標準”錯誤輸出流。

聲明

以下是java.lang.System.setErr()方法的聲明

public static void setErr(PrintStream err)

參數

  • err -- 這是新的標準錯誤輸出流。

返回值

此方法不返回任何值。

異常

  • SecurityException -- 如果安全管理器存在並且其checkPermission方法不允許重新分配標準錯誤輸出流。

例子

下麵的例子顯示java.lang.System.setErr()方法的使用。

package com.yiibai;

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