我在这里有一个简单的密码方法,我想在我已经制作的所有不同控制台应用程序的特定位置触发它。我的目标是打包,但对此一无所知。
import java.util.Scanner;
public class Password {
public void Password(){
System.out.println("Enter password:");
Scanner scn = new Scanner(System.in);
boolean correct = false;
do{
String psw = scn.nextLine();
if(psw.equals("my0opinion0of0a0master0password193847582C")){
System.out.println("welcome");
System.out.println("");
correct = true;
}else{
System.out.println("Retry:");
}
}while(!correct);
}
}
和不; 那不是我的真实密码:P