java如何键盘读入多个数据

java如何键盘读入多个数据

要在Java中从键盘读取多个数据,可以使用Scanner类、BufferedReader类、或Console类。这些方法各有优点,Scanner类适合简单的输入处理、BufferedReader类适合处理大数据量、Console类适合处理更复杂的控制台输入。 在这篇文章中,我将详细介绍这三种方法,并提供示例代码来展示它们的用法。


一、使用Scanner类

1. Scanner类的基本用法

Scanner类是Java中最常用的读取键盘输入的类。它位于java.util包中,提供了多种方法来读取不同类型的数据,如整数、浮点数、字符串等。

import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.println("Enter multiple numbers separated by space:");

String input = scanner.nextLine();

String[] numbers = input.split(" ");

for (String number : numbers) {

System.out.println("You entered: " + number);

}

scanner.close();

}

}

2. 使用Scanner类读取整数

使用Scanner类读取整数非常简单,只需调用nextInt()方法。此方法会在遇到非整数输入时抛出InputMismatchException。

import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.println("Enter multiple integers separated by space:");

String input = scanner.nextLine();

String[] numbers = input.split(" ");

for (String number : numbers) {

try {

int num = Integer.parseInt(number);

System.out.println("You entered integer: " + num);

} catch (NumberFormatException e) {

System.out.println("Invalid integer input: " + number);

}

}

scanner.close();

}

}

3. 使用Scanner类读取浮点数

同样,使用Scanner类读取浮点数也很简单,只需调用nextDouble()方法。

import java.util.Scanner;

public class Main {

public static void main(String[] args) {

Scanner scanner = new Scanner(System.in);

System.out.println("Enter multiple floating-point numbers separated by space:");

String input = scanner.nextLine();

String[] numbers = input.split(" ");

for (String number : numbers) {

try {

double num = Double.parseDouble(number);

System.out.println("You entered floating-point number: " + num);

} catch (NumberFormatException e) {

System.out.println("Invalid floating-point input: " + number);

}

}

scanner.close();

}

}


二、使用BufferedReader类

1. BufferedReader类的基本用法

BufferedReader类位于java.io包中,适合处理大数据量的输入。BufferedReader类需要与InputStreamReader类配合使用。

import java.io.BufferedReader;

import java.io.InputStreamReader;

import java.io.IOException;

public class Main {

public static void main(String[] args) {

BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

System.out.println("Enter multiple lines of text. Type 'exit' to quit:");

while (true) {

try {

String input = reader.readLine();

if ("exit".equalsIgnoreCase(input)) {

break;

}

System.out.println("You entered: " + input);

} catch (IOException e) {

e.printStackTrace();

}

}

}

}

2. 使用BufferedReader类读取整数

与Scanner类类似,可以使用Integer.parseInt()方法将读取的字符串转换为整数。

import java.io.BufferedReader;

import java.io.InputStreamReader;

import java.io.IOException;

public class Main {

public static void main(String[] args) {

BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

System.out.println("Enter multiple integers separated by space:");

try {

String input = reader.readLine();

String[] numbers = input.split(" ");

for (String number : numbers) {

try {

int num = Integer.parseInt(number);

System.out.println("You entered integer: " + num);

} catch (NumberFormatException e) {

System.out.println("Invalid integer input: " + number);

}

}

} catch (IOException e) {

e.printStackTrace();

}

}

}

3. 使用BufferedReader类读取浮点数

类似地,可以使用Double.parseDouble()方法将读取的字符串转换为浮点数。

import java.io.BufferedReader;

import java.io.InputStreamReader;

import java.io.IOException;

public class Main {

public static void main(String[] args) {

BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));

System.out.println("Enter multiple floating-point numbers separated by space:");

try {

String input = reader.readLine();

String[] numbers = input.split(" ");

for (String number : numbers) {

try {

double num = Double.parseDouble(number);

System.out.println("You entered floating-point number: " + num);

} catch (NumberFormatException e) {

System.out.println("Invalid floating-point input: " + number);

}

}

} catch (IOException e) {

e.printStackTrace();

}

}

}


三、使用Console类

1. Console类的基本用法

Console类位于java.io包中,适用于处理更复杂的控制台输入。Console类的readLine()方法可以读取一行输入。

import java.io.Console;

public class Main {

public static void main(String[] args) {

Console console = System.console();

if (console == null) {

System.out.println("No console available");

return;

}

System.out.println("Enter multiple lines of text. Type 'exit' to quit:");

while (true) {

String input = console.readLine();

if ("exit".equalsIgnoreCase(input)) {

break;

}

System.out.println("You entered: " + input);

}

}

}

2. 使用Console类读取整数

与Scanner类和BufferedReader类一样,可以使用Integer.parseInt()方法将读取的字符串转换为整数。

import java.io.Console;

public class Main {

public static void main(String[] args) {

Console console = System.console();

if (console == null) {

System.out.println("No console available");

return;

}

System.out.println("Enter multiple integers separated by space:");

String input = console.readLine();

String[] numbers = input.split(" ");

for (String number : numbers) {

try {

int num = Integer.parseInt(number);

System.out.println("You entered integer: " + num);

} catch (NumberFormatException e) {

System.out.println("Invalid integer input: " + number);

}

}

}

}

3. 使用Console类读取浮点数

类似地,可以使用Double.parseDouble()方法将读取的字符串转换为浮点数。

import java.io.Console;

public class Main {

public static void main(String[] args) {

Console console = System.console();

if (console == null) {

System.out.println("No console available");

return;

}

System.out.println("Enter multiple floating-point numbers separated by space:");

String input = console.readLine();

String[] numbers = input.split(" ");

for (String number : numbers) {

try {

double num = Double.parseDouble(number);

System.out.println("You entered floating-point number: " + num);

} catch (NumberFormatException e) {

System.out.println("Invalid floating-point input: " + number);

}

}

}

}


四、总结

在Java中,有多种方法可以读取键盘输入的多个数据。Scanner类、BufferedReader类和Console类各有优点和适用场景。Scanner类适合简单的输入处理,BufferedReader类适合处理大数据量,Console类适合处理更复杂的控制台输入。根据具体需求选择合适的方法,可以使代码更加高效和简洁。希望这篇文章能帮助你更好地理解和使用这些类来读取键盘输入的多个数据。

相关问答FAQs:

1. 如何在Java中实现键盘读入多个数据?
在Java中,可以使用Scanner类来实现键盘读入多个数据。首先,需要导入java.util.Scanner类,然后创建Scanner对象。接下来,可以使用Scanner对象的不同方法来读取不同类型的数据,如nextInt()、nextDouble()等。通过循环和条件语句,可以实现多次读取数据,直到满足特定条件为止。

2. 如何处理在键盘读入多个数据时可能出现的异常?
在使用Scanner类进行键盘读入多个数据时,可能会遇到输入格式不符合预期的情况,例如输入了非数字字符等。为了处理这种异常,可以使用try-catch语句块来捕获异常,并在发生异常时进行相应的处理。可以通过在catch语句块中输出错误信息或提示用户重新输入来解决这个问题。

3. 如何在键盘读入多个数据时避免阻塞等待输入?
在使用Scanner类进行键盘读入多个数据时,默认情况下程序会在等待用户输入时阻塞,直到用户输入完成才会继续执行。但是,如果需要在读取输入的同时继续执行其他任务,可以使用线程来实现非阻塞输入。可以将键盘读入的逻辑放在一个独立的线程中运行,这样就可以同时执行其他任务,而不会被阻塞在等待用户输入上。

原创文章,作者:Edit2,如若转载,请注明出处:https://docs.pingcode.com/baike/301116

(0)
Edit2Edit2
上一篇 2024年8月15日 下午1:46
下一篇 2024年8月15日 下午1:46
免费注册
电话联系

4008001024

微信咨询
微信咨询
返回顶部