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

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

java.lang.System.setIn() 方法重新分配“標準”輸入流。

聲明

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

public static void setIn(InputStream in)

參數

  • in -- 這是新的標準輸入流。

返回值

此方法不返回任何值。

異常

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

例子

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

package com.yiibai;

import java.lang.*;

public class SystemDemo {

   public static void main(String[] args) throws Exception {
    
     // existing file
     System.setIn(new FileInputStream("file.txt"));

     // read the first character in the file
     char ret = (char)System.in.read();

     // returns the first character
     System.out.println(ret);              
   }
} 

假設我們有一個文本文件file.txt 的內容如下:

This is System class!!!

編譯會產生以下結果:

T