字节流 system.in

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字节流 system.in相关的知识,希望对你有一定的参考价值。

public class StreamDemo5 {
public static void main(String[] args) {
try {
byte[] b = new byte[10000];
System.out.println("请输入:");
while(true){
int bytes = System.in.read(b,0,b.length);
String s = new String(b,0,bytes);
if("end".equals(s))break;
System.out.println(s);
}
} catch (Exception e) {
e.printStackTrace();
}
}

}

以上是关于字节流 system.in的主要内容,如果未能解决你的问题,请参考以下文章

Java IO

从字节流到字符流的装换

java 核心编程——IO流之字符流和字节流相互转换

Java字节流-从文件输入,输出到文件

Java学习之IO流(转换流)

Java基础总结IO流