Completion requirements
Java provides a Scanner class to facilitate data input/output. In this section, you will learn about the Scanner class that is used to get input from the user. Java also defines various methods from the Scanner class that can convert user input into appropriate data types before conducting any operation on the data.
10. Details (continued)
Answer:
The standard input stream — the keyboard.
(Scanner objects can be connected to other data streams.)
Details (continued)
Details (continued)
import java.util.Scanner; public class Echo { public static void main (String[] args) { String inData; Scanner scan = new Scanner( System.in ); System.out.println("Enter the data:"); inData = scan.nextLine(); System.out.println("You entered:" + inData ); } } |
System.out.println("Enter the data:");
This calls the method println
to print the characters "Enter the data:" to the monitor.
inData = scan.nextLine();
This uses thenextLine()
method of the object referred to byscan
to read a line of characters from the keyboard. AString
object (referred to byinData
) is created to contain the characters.
System.out.println("You entered:" + inData );
This first creates aString
by concatenating "You entered:" to characters frominData
, then callsprintln()
to print thatString
to the monitor.
Question 10:
When the program runs, can the user edit the input string (using backspace and other keyboard keys) before hitting "enter"?
(Try this, if you have a running program.)