处理流之三:标准输入、输出流
-
System.in和System.out分别代表了系统标准的输入和输出设备
- 默认输入设备是:键盘,输出设备是:显示器
- System.in的类型是InputStream
- System.out的类型是PrintStream,其是OutputStream的子类,FilterOutputStream的子类
- 重定向:通过System类的SetIn,setOut方法对默认设备进行改变。
- public static void setIn(InputStream in)
- public static void setOut(PrintStream out)
/**
* 其他流的使用
* 1.标准的输入、输出流
* 2.打印流
* 3.数据流
*/
public class OtherStreamTest {
/*
1.标准的输入、输出流
1.1
System.in:标准的输入流、默认从键盘输入
System.out:标准的输出流,默认从控制台输出
1.2
System类的setIn()/setOut()方式重新指定输入和输出的流。
1.3练习
从键盘输入字符串,要求将读取到的整行字符串转成大写输出,然后继续进行输入操作,
直至当输入”e“或者”exit“时,退出程序。
方法一:使用Scanner实现,调用exit()返回一个字符串
方法二:使用System.in实现。System.in ---> 转换流 ---> BufferedReader的readLine()
*/
@Test
public void test1(){
BufferedReader br = null;
try {
InputStreamReader isr = new InputStreamReader(System.in);
br = new BufferedReader(isr);
while (true){
System.out.println("请输入字符串:");
String data = br.readLine();
if("e".equalsIgnoreCase(data) || "exit".equalsIgnoreCase(data)){
System.out.println("程序结束");
break;
}
String upperCase = data.toUpperCase();
System.out.println(upperCase);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null){
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}