A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

import java.io.IOException;
02.  import java.io.InputStream;
03.
04.  public class ReadKey{
05.      public static void main(String[] args) throws IOException {
06.       readKey();
07.      }
08.
09.       public static void readKey() throws IOException {
10.             InputStream in = System.in;
11.
12.              int ch = in.read();// 阻塞式方法
13.              System.out.println(ch);
14.
15              ch = in.read(); // 阻塞式方法
16.              System.out.println(ch);
17.
18.              ch = in.read(); // 阻塞式方法
19.               System.out.println(ch);
20.
21.              in.close();
22.       }
23.  }

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马