Java.lang.System.setOut() 方法

描述

java.lang.System.setOut() 方法重新分配"标准"输出流。


声明

以下是 java.lang.System.setOut() 方法的声明。

public static void setOut(PrintStream out)

参数

out − 这是标准输出流。


返回值

此方法不返回任何值。


异常

SecurityException − 如果存在安全管理器并且其 checkPermission 方法不允许重新分配标准输出流。


示例

下面的例子展示了 java.lang.System.setOut() 方法的使用。

package com.tutorialspoint;

import java.lang.*;
import java.io.*;

public class SystemDemo {

   public static void main(String[] args) throws Exception {
    
      // create file
      FileOutputStream f = new FileOutputStream("file.txt");

      System.setOut(new PrintStream(f));

      // this text will get redirected to file
      System.out.println("This is System class!!!");
   }
} 

Let us assume we have a text file file.txt which gets generated as an output for our example program.The file consist of −

This is System class!!!