Revision: 36145
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at November 18, 2010 20:08 by visudex
Initial Code
import java.util.Scanner; public class ReadUserInput { public static void main(String[] args) { Scanner sc = new Scanner(System.in); //Creates the scanner and tells it //to read from the keyboard(System.in) String name; // The variable which is going to store the user's input System.out.println("Enter your name."); name = sc.nextLine(); //Sets name equal to user's input //if you just call the "next" method, the Scanner will read up to the first space. System.out.println("Hello " + name);//Greets the user } }
Initial URL
Initial Description
This snippet will allow you to read user's input when they write in the console. This method uses the Scanner class, which is my favorite way of doing instead of using the Buffered Reader, with the Scanner, you can also read from a file.
Initial Title
Read User Input Java with Scanner Class
Initial Tags
class, java, user
Initial Language
Java