public class OtherStreamTest {
/*
1.标准的输入、输出流
1.1
System.in:标准的输入流,默认从键盘输入
System.out:标准的输出流,默认从控制台输出
1.2
System类的setIn(InputStream is) / setOut(PrintStream ps)方式重新指定输入和输出的流
1.3练习:
从键盘输入字符串,要求将读取到的整行字符串转成大写输出 然后继续进行输入操作
直至当输入"e"或者"exit"时,退出程序
方法一:使用Scanner实现,调用next()返回一个字符串
方法二:使用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();
}
}
}
}
}
[IO流]标准的输入、输出流
"该篇博客介绍了Java中标准输入输出流的使用,包括System.in和System.out。通过示例展示了如何从键盘读取字符串并转换为大写输出,直到输入特定字符"e"或"exit"时退出程序。方法一是使用Scanner,方法二是通过InputStreamReader和BufferedReader实现。此外,还提供了System类中设置输入输出流的方法。"
摘要由CSDN通过智能技术生成