forked from CMPundhir/JavaExamples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConsoleDemo.java
36 lines (32 loc) · 876 Bytes
/
ConsoleDemo.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.cmpundhir;
import java.io.Console;
class ConsoleDemo{
private static String savedUsername = "cmpundhir";
private static char[] savedPassword = {'s','t','r','o','n','g'};
private static boolean isVerified(String un,char[] ps){
if(un.equals(savedUsername)){
for(int i=0;i<savedPassword.length;i++){
if(savedPassword[i]!=ps[i]){
System.out.println("Incorrect Password");
return false;
}
}
}else{
System.out.println("Incorrect username");
return false;
}
return true;
}
public static void main(String[] args){
String username;
char[] password;
System.out.println("Enter username : ");
Console con = System.console();
username = con.readLine();
System.out.println("Enter password : ");
password = con.readPassword();
if(isVerified(username,password)){
System.out.println("Welcome "+username);
}
}
}