Java Scanner对象

175 阅读3分钟

Scanner 对象

  • Java给我们提供了一个工具类,我们可以获取用户的输入。java.util.Scannerjava 5的新特征,我们可以通过Scanner类来获取用户的输入。

  • 基本语法

    Scanner s = new Scanner(Sysetm.in);
    
  • 通过Scanner类的next()nextLine()方法获取输入的字符串,在读取钱我们一般需要使用hasNext()hasNextLine()判断是否还有输入的数据。

使用 next 方法:

import java.util.Scanner;

public class ScannerDemo {
    public static void main(String[] args) {
        //创建一个扫描器对象,用于接收键盘数据
        Scanner scan = new Scanner(System.in);
        

        // next方式接收字符串
        System.out.println("next方式接收:");
        // 判断是否还有输入
        if (scan.hasNext()) {
            //使用next方式接收
            String str1 = scan.next();
            System.out.println("输入的数据为:" + str1);
        }
        
       //凡是属于输入输出流的类,如果不关闭会一直占用资源,要养成良好的习惯用完就关掉
        scan.close();
    }
}
next方式接收:
hello world!
输入的数据为:hello

可以看到我们输入了hello world!,却只输出了hello

使用 nextLine 方法:

import java.util.Scanner;

public class ScannerDemo {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        // 从键盘接收数据

        // nextLine方式接收字符串
        System.out.println("nextLine方式接收:");
        // 判断是否还有输入
        if (scan.hasNextLine()) {
            String str2 = scan.nextLine();
            System.out.println("输入的数据为:" + str2);
        }
        scan.close();
    }
}
nextLine方式接收:
hello world!
输入的数据为:hello world!

next()nextLine() 区别

next():

  • 1、一定要读取到有效字符后才可以结束输入。
  • 2、对输入有效字符之前遇到的空白,next() 方法会自动将其去掉。
  • 3、只有输入有效字符后才将其后面输入的空白作为分隔符或者结束符。
  • next() 不能得到带有空格的字符串。

nextLine()

  • 1、以Enter为结束符,也就是说 nextLine()方法返回的是输入回车之前的所有字符。
  • 2、可以获得空白。

如果要输入 intfloat 类型的数据,在 Scanner 类中也有支持,但是在输入之前最好先使用 hasNextXxx() 方法进行验证,再使用 nextXxx() 来读取:

import java.util.Scanner;

public class ScannerDemo {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        // 从键盘接收数据
        int i = 0;
        float f = 0.0f;
        System.out.print("输入整数:");
        if (scan.hasNextInt()) {
            // 判断输入的是否是整数
            i = scan.nextInt();
            // 接收整数
            System.out.println("整数数据:" + i);
        }
        System.out.print("输入小数:");
        if (scan.hasNextFloat()) {
            // 判断输入的是否是小数
            f = scan.nextFloat();
            // 接收小数
            System.out.println("小数数据:" + f);
        }
        scan.close();
    }
}
输入整数:1
整数数据:1
输入小数:1.2
小数数据:1.2
输入整数:1.2
输入小数:小数数据:1.2

以上因为输入不是整数,所以整数数据没有输出,而输入的数据留在了缓冲区中,当接下来计算机等待输入浮点类型数据,直接从缓冲区拿到了这个1.2 和回车符,然后直接输出。

**练习:**输入多个数字,并求其总和与平均数,每输入一个数字用回车确认,通过输入非数字来结束输入并输出执行结果:

import java.util.Scanner;
 
class RunoobTest {
    public static void main(String[] args) {
        System.out.println("请输入数字:");
        Scanner scan = new Scanner(System.in);
 
        double sum = 0;
        int m = 0;
 		
        //通过循环判断是否还有输入数字
        while (scan.hasNextDouble()) {
            double x = scan.nextDouble();
            //每次加1,统计个数
            m = m + 1;
            //每次假如输入的数字,统计总数
            sum = sum + x;
        }
 
        System.out.println(m + "个数的和为" + sum);
        System.out.println(m + "个数的平均值是" + (sum / m));
        scan.close();
    }
}
请输入数字:
12
23
15
21.4
end
4个数的和为71.4
4个数的平均值是17.85