//从文件读取数据,data.txt位于src目录,包含多个int型数值
FileInputStream input = new FileInputStream("src/data.txt");
Scanner scan = new Scanner(input);//用文件输入流作为数据源
while(scan.hasNextInt())
System.out.println(scan.nextInt());
class="hljs-button signin active add_def" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
//从控制台输入数据
Scanner scan = new Scanner(System.in);
System.out.println("请输入年龄:");
int age = scan.nextInt();
System.out.println("你输入的年龄是:"+age);
class="hljs-button signin active add_def" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
2.Scanner(File source)
功能:构造一个新的 Scanner,它生成的值是从指定文件扫描的,以文件作为数据源。
File fdata = new File("src/data.txt"); //data.txt包含数据123 456 789
Scanner fscan = new Scanner(fdata);
while(fscan.hasNextInt()) {
System.out.print(fscan.nextInt()+" "); //输出:123 456 789
}
System.out.println();
class="hljs-button signin active add_def" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
6
3.Scanner(String source)
功能:构造一个新的 Scanner,它生成的值是从指定字符串扫描的。
String str = "hello world!\nWelcome to China!";//两行内容
Scanner scan = new Scanner(str);
while(scan.hasNextLine()) {
System.out.println(scan.nextLine());
}
/*
输出两行内容:
hello world!
Welcome to China!
*/
class="hljs-button signin active add_def" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
String input = "1 fish 2 fish red fish blue fish";
//使用“fish”作为分隔符,\\s*:'\\'表示'\',\\s对应正则式中的\s,表示空白字符,*表示零或多个
//从而:\\s*表示零个或多个空白符。\\s*fish\\s*表示fish前后有零或多个空白符
Scanner s = new Scanner(input).useDelimiter("\\s*fish\\s*");
System.out.println(s.nextInt()); //1
System.out.println(s.nextInt()); //2
System.out.println(s.next()); //red
System.out.println(s.next()); //blue
s.close();
class="hljs-button signin active add_def" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
6
7
8
9
29.Scanner useDelimiter(String pattern)
将此扫描器的分隔模式设置为从指定 String 构造的模式。
/*
使用转义字符"\n"作为分隔符,使得next()接收中间带空格的一行字符串,
输入hello world后会出hello world,如果不使用"\n"作分隔符,只能接收到hello。
*/
Scanner ss = new Scanner(System.in);
ss.useDelimiter("\n");
System.out.println("请输入一行字符:");
String str2 = ss.next();
System.out.println(str2);
class="hljs-button signin active add_def" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
1
2
3
4
5
6
7
8
9
30.Scanner useRadix(int radix)
将此扫描器的默认基数设置为指定基数。
Scanner scan = new Scanner(System.in);
scan.useRadix(0x10);
int b = scan.nextInt();//也可以在该方法中指定基数:nextInt(0x10) 。输入:10
System.out.println(b); //输出:16
class="hljs-button signin active add_def" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
评论记录:
回复评论: