What is the name of the Java class used to create an object that reads input from the keyboard?

you better learn to read your java documentation. Here's a discussion of the topic:

http://stackoverflow.com/questions/17538182/getting-keyboard-input

The Java class used to read input from the keyboard is called "Scanner". To create an object that reads input from the keyboard using the Scanner class, you would need to follow these steps:

1. Import the Scanner class at the beginning of your Java program by adding the following line of code:

```java
import java.util.Scanner;
```

2. Create an instance of the Scanner class by declaring a new object of type Scanner. You can do this by adding the following line of code:

```java
Scanner scanner = new Scanner(System.in);
```

3. Now, you can use the methods provided by the Scanner class to read input from the keyboard. For example, you can use the `nextLine()` method of the Scanner object to read a line of text:

```java
String input = scanner.nextLine();
```

This will wait for the user to type a line of text on the keyboard and then store it in the `input` variable.

Remember to handle any exceptions that may occur when reading input from the keyboard, such as using a try-catch block or throwing an exception.