In Feburary 2016 24,
Start a new project in NetBeans by clicking on its icon, selecting 'File/New Project', and choosing 'Java Applicatoin.' A new Java project is created and a source code file appears in the NetBeans text editor. The source code file has a main function and little else.
Import the 'Console' class by writing this line at the top of the source code file:import java.io.Console;
Create a new Console object by writing the following line of code between the curly brackets of the main function:Console c = System.console();
Declare a couple of strings, one for a user's name, and one for the user's password. You can accomplish this by writing the following:String userName, password;
Prompt the user to enter his or her user name using the following line of code:userName = c.readLine('Enter your user name and press enter: ');
Repeat the last step for the user's password, like this:password = c.readLine('Enter your password and press enter: ');
Run the program by pressing F6. The program will prompt you to enter a name. After you enter your name, it will ask you for a password. You can add more prompts if you would like. All you have to do is repeat the previous step and add more strings to hold the data.
In Feburary 2016 24,
No comments:
Post a Comment