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