标准的输入输出流
标准的输入输出流也是处理流的一种
标准的输入流: - 默认从键盘输入
- System.in
标准的输出流 - 默认从控制台输出
- System.out
我们可以通过以下方法来重新指定标准输入流的输入或者标准输出流的输出位置
- System.setIn(InputStream is);
- 设置标准输入流输入位置为参数输入流连接的位置
- System.setOut(OutputStream os);
- 设置标准输出流输出位置为参数输出流连接的位置
- 也称之为重定向,也就是通过System类中的setIn()方法和setOut()方法对默认输入输出位置进行修改
System.In的类型是InputStream
System.Out的类型是printStream
- 这里的printStream是OutputStream的子类