w3resource

Java: Read input from java console


Write a Java program to read input from the Java console.

Test Data
Input your name: Alexandra

Sample Solution:

Java Code:

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

 public class Exercise8 {
  public static void main(String[] args) throws IOException
  {
    BufferedReader R = new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Input your name: ");
    String name = R.readLine();
    System.out.println("Your name is: " + name);
  }
}

Sample Output:

Input your name: Alexandra                                                                                    
Your name is: Alexandra

Flowchart:

Flowchart: Read input from java console


For more Practice: Solve these Related Problems:

  • Write a Java program to read multiple lines of input from the console until a specific termination word is entered.
  • Write a Java program to prompt the user for input and then echo the input with altered case formatting.
  • Write a Java program to read console input continuously and store each line in a list until the user types "exit".
  • Write a Java program to accept console input and perform basic validation before processing it further.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to get last modified time of a file.
Next: Write a Java program to get file size in bytes, kb, mb.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.