字节流 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的主要内容,如果未能解决你的问题,请参考以下文章