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

读取键盘输入---字节流

时间:2016-09-30 02:24:44      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

键盘是一个标准的输入设备,java对于这种输入设备都有对应的对象。

public static void readKey() throws IOException {
        
//如果输入字符a然后回车输入,输入的其实是三个字节,in.read()每次只读一个字节。

        InputStream in = System.in;
        
        int ch = in.read();//阻塞式方法。        
        System.out.println(ch);//97
        int ch1 = in.read();//阻塞式方法。        
        System.out.println(ch1);//13
        int ch2 = in.read();//阻塞式方法。        
        System.out.println(ch2);//10
        
//        in.close();// system.in 及out随系统而来,随系统而去,最好不要手动的去关,一旦关了后,就再也用不了了,
        
//        InputStream in2 = System.in;
//        int ch3 = in2.read();
        
    } 

 

public static void readKey2() throws IOException {
        
        /*
         * 获取用户键盘录入的数据,
         * 并将数据变成大写显示在控制台上,
         * 如果用户输入的是over,结束键盘录入。
         * 
         * 思路:
         * 1,因为键盘录入只读取一个字节,要判断是否是over,需要将读取到的字节拼成字符串。
         * 2,那就需要一个容器。StringBuilder.
         * 3,在用户回车之前将录入的数据变成字符串判断即可。 
         * 
         */
        
        //1,创建容器。
        StringBuilder sb = new StringBuilder();
        
        //2,获取键盘读取流。        
        InputStream in = System.in;
        
        //3,定义变量记录读取到的字节,并循环获取。         
        int ch = 0;
        
        while((ch=in.read())!=-1){
            
//            在存储之前需要判断是否是换行标记 ,因为换行标记不存储。 
            if(ch==‘\r‘)
                continue;
            if(ch==‘\n‘){
                String temp = sb.toString();
                if("over".equals(temp))
                    break;
                System.out.println(temp.toUpperCase());
                sb.delete(0, sb.length());
            }
            else
            //将读取到的字节存储到StringBuilder中。
            sb.append((char)ch);
            
//            System.out.println(ch);
        }
        
    }

 

读取键盘输入---字节流

标签:

原文地址:http://www.cnblogs.com/lxboy2009/p/5922411.html

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