當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Java.lang.System.setIn()用法及代碼示例



描述

這個java.lang.System.setIn() 方法重新分配 "standard" 輸入流。

聲明

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

public static void setIn(InputStream in)

參數

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

返回值

此方法不返回任何值。

異常

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

示例

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

package com.tutorialspoint;

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

相關用法


注:本文由純淨天空篩選整理自 Java.lang.System.setIn() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。