Programming Tutorials

(追記) (追記ここまで)

Get user input in Java

By: Marcus in Java Tutorials on 2011年01月06日 [フレーム]

This Java program prompts the user to enter the name by using System.out.print() method to keep the cursor on the same line. Then using the System.in object, along with the InputstreamReader and BufferedReader classes the user input is read. The br.readline() method reads the name from the command line. After pressing the enter key, you will get the user input.

import java.io.*;
public class GetUserInput {
 public static void main (String[] args) {
 System.out.print("Enter your name and press Enter: ");
 BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
 String name = null;
 try {
 name = br.readLine();
 } catch (IOException e) {
 System.out.println("Error!");
 System.exit(1);
 }
 System.out.println("Your name is " + name);
}
} 



(追記) (追記ここまで)


Add Comment

JavaScript must be enabled for certain features to work
* Required information
1000

Comments

No comments yet. Be the first!
(追記) (追記ここまで)
(追記) (追記ここまで)

AltStyle によって変換されたページ (->オリジナル) /