Java System setIn()方法
java.lang.System.setIn() 方法重新分配“标准”输入流。
1 语法
public static void setIn(InputStream in)
2 参数
in : 这是新的标准输入流。
3 返回值
此方法不返回任何值。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* Java System setIn()方法
*/
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
热门文章
优秀文章