Java Scanner(String source) Constructor
Syntax
Scanner(String source) constructor from Scanner has the following syntax.
public Scanner(String source)
Example
In the following code shows how to use Scanner.Scanner(String source) constructor.
import java.util.Scanner;
// w w w. j a v a2s . co m
public class Main {
public static void main(String[] args) {
String s = "java2s.com 1 + 1 = 2.0 true ";
Scanner scanner = new Scanner(s);
System.out.println(scanner.nextLine());
// change the radix of the scanner
scanner.useRadix(32);
// display the new radix
System.out.println(scanner.radix());
scanner.close();
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »