java.util
包的Scanner
类用于从不同的源(例如输入流,用户,文件等)读取输入数据。让我们举个例子。
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// Creates an object of Scanner
Scanner input = new Scanner(System.in);
System.out.print("Enter your name: ");
// Takes input from the keyboard
String name = input.nextLine();
// Prints name
System.out.println("My name is " + name);
// Closes the scanner
input.close();
}
}
输出
Enter your name: Jack
My name is Jack
在上面的示例中,请注意以下行
Scanner input = new Scanner(System.in);
在这里,我们创建了一个名为input
的Scanner
对象。
System.in
参数用于从标准输入中获取输入。 就像从键盘上获取输入一样。
然后,我们使用Scanner
类的nextLine()
方法从用户读取一行文本。
现在您对Scanner
有了一些了解,让我们对其进行更多的探索。
从上面的示例中可以看到,我们需要先导入java.util.Scanner
包,然后才能使用Scanner
类。
import java.util.Scanner;
如上所述,导入包后,就可以创建Scanner
对象。
// To read input from the input stream
Scanner sc1 = new Scanner(InputStream input);
// To read input from files
Scanner sc2 = new Scanner(File file);
// To read input from a string
Scanner sc3 = new Scanner(String str);
在这里,我们创建了Scanner
类的对象,这些对象将从 InputStream ,文件和字符串中分别读取输入。
Scanner
类提供了各种方法,使我们可以读取不同类型的输入。
方法 | 描述 |
---|---|
nextInt() |
从用户读取int 值 |
nextFloat() |
从用户读取float 值 |
nextBoolean() |
从用户读取boolean 值 |
nextLine() |
从用户读取一行文本 |
next() |
读取用户的单词 |
nextByte() |
从用户读取byte 值 |
nextDouble() |
从用户读取doubl e 值 |
nextShort() |
从用户读取short 值 |
nextLong() |
从用户读取long 值 |
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// creating a Scanner object
Scanner input = new Scanner(System.in);
System.out.println("Enter an integer: ");
// read an int value
int data1 = input.nextInt();
System.out.println("Using nextInt(): " + data1);
input.close();
}
}
输出:
Enter an integer:
22
Using nextInt(): 22
在上面的示例中,我们使用nextInt()
方法读取整数值。
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// creates an object of Scanner
Scanner input = new Scanner(System.in);
System.out.print("Enter double value: ");
// reads the double value
double value = input.nextDouble();
System.out.println("Using nextDouble(): " + value);
input.close();
}
}
输出:
Enter double value: 33.33
Using nextDouble(): 33.33
在上面的示例中,我们使用nextDouble()
方法读取浮点值。
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// creates an object of Scanner
Scanner input = new Scanner(System.in);
System.out.print("Enter your name: ");
// reads the entire word
String value = input.next();
System.out.println("Using next(): " + value);
input.close();
}
}
输出:
Enter your name: Jonny Walker
Using next(): Jonny
在上面的示例中,我们已使用next()
方法从用户读取字符串。
在这里,我们提供了全名。 但是,next()
方法仅读取名字。
这是因为next()
方法最多读取空白字符的输入。 一旦遇到空格,它将返回字符串(不包括空格)。
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// creates an object of Scanner
Scanner input = new Scanner(System.in);
System.out.print("Enter your name: ");
// reads the entire line
String value = input.nextLine();
System.out.println("Using nextLine(): " + value);
input.close();
}
}
输出:
Enter your name: Jonny Walker
Using nextLine(): Jonny Walker
在第一个示例中,我们使用nextLine()
方法从用户读取字符串。
与next()
不同,nextLine()
方法读取包括空格在内的整行输入。 当遇到下一个行字符\n
时,该方法终止。
推荐阅读: Java 扫描器跳过nextLine()
。
Java 扫描器还可以用于读取大整数和大十进制数。 要了解BigInteger
和BigDecimal
,请访问 Java BigInteger
和 Java BigDecimal
。
nextBigInteger()
- 从用户读取大整数值nextBigDecimal()
- 从用户读取大十进制值
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Scanner;
class Main {
public static void main(String[] args) {
// creates an object of Scanner
Scanner input = new Scanner(System.in);
System.out.print("Enter a big integer: ");
// reads the big integer
BigInteger value1 = input.nextBigInteger();
System.out.println("Using nextBigInteger(): " + value1);
System.out.print("Enter a big decimal: ");
// reads the big decimal
BigDecimal value2 = input.nextBigDecimal();
System.out.println("Using nextBigDecimal(): " + value2);
input.close();
}
}
输出:
Enter a big integer: 987654321
Using nextBigInteger(): 987654321
Enter a big decimal: 9.55555
Using nextBigDecimal(): 9.55555
在上面的示例中,我们使用java.math.BigInteger
和java.math.BigDecimal
包分别读取BigInteger
和BigDecimal
。
Scanner
类读取整行并将该行分为令牌。 令牌是对 Java 编译器有意义的小元素。 例如,
假设有一个输入字符串:
He is 22
在这种情况下,扫描器对象将读取整行并将字符串分成标记:He
,is
,22
。 然后,对象遍历每个令牌,并使用其不同方法读取每个令牌。
注意:默认情况下,空格用于划分令牌。