码迷,mamicode.com
首页 > 其他好文 > 详细

字节流 system.in

时间:2016-01-24 15:28:02      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:

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

标签:

原文地址:http://www.cnblogs.com/shaoshanhuo/p/5155111.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!