Java代码中如何获取键盘输入呢?
Java中获取键盘输入信息的两种方法分享
方式 1:使用 Scanner类
Scanner keyInput= new Scanner(System.in); String t = keyInput.nextLine(); keyInput.close();
方式 2:使用 BufferedReader类
BufferedReader keyInput= new BufferedReader(new InputStreamReader(System.in)); String t = keyInput.readLine();
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。