import java.util.Scanner; // 方法1 需要引入 import java.io.*; //方法2和方法3 需要引入 public class main{ public static void main(String [] args) throws IOException{ // 方法1: 读取一个字符串(简单强大:可以持续输入若干字符串) System.out.print("请输入若干字符串:"); Scanner sc = new Scanner(System.in); String s = sc.nextLine(); // 注意:会吸收上一次输完一个字符串后按下的 Enter 和 Tab int i = sc.nextInt(); float f = sc.nextFloat(); // 方法2: 读取一个字符串() System.out.print("请输入一个字符串:"); BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String s = br.readLine(); // 方法3: 读取一个字符(获取到的变量的类型只能是char) System.out.print("请输入一个字符:"); char c = (char)System.in.read(); } }
当在控制台输入一个整数i后按下Enter后,再在控制台输入一个字符串s(如 abc)后按下Enter,如果用下面代码来接收 i 和 s 的值,s接收了回车符的值。
Scanner sc = new Scanner(System.in); int i = sc.nextInt(); String s = sc.nextLine();
要想正确获取的值应该使用如下写法:
Scanner sc = new Scanner(System.in); int i = sc.nextInt(); String tmp = sc.nextLine(); String s = sc.nextLine();
参考:java怎么获取输入