获取键盘输入信息常用的两种方法
Posted wxguo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取键盘输入信息常用的两种方法相关的知识,希望对你有一定的参考价值。
1.Scanner
1 Scanner sc = new Scanner(System.in); 2 String s1 = sc.next(); 3 String s2 = sc.nextLine(); 4 int a = sc.nextInt();
2.BufferedReader
1 BufferedReader input = new BafferedReader(new InputStreamReader(System.in)); 2 int a = input.read();//读取一个字符 3 String s = input.readLine();
以上是关于获取键盘输入信息常用的两种方法的主要内容,如果未能解决你的问题,请参考以下文章