-6
我需要創建一個系統來檢查文件中的用戶名和密碼,如果它是正確的,它表示是否在標籤中。到目前爲止,我已經能夠簡單地使一個用戶名和密碼等於變量,但需要將其鏈接到莫名其妙文件..如何在Java中創建登錄
String user_pass;
String user_name;
user_name= txtUser.getText().tostring();
user_pass= txtPass.getText().tostring();
if(user_name.equals("mube123") && user_pass.equals("mubarik")){
lblDisplay.setText("Credentials Accepted.");
}
else{
lblDisplay.setText("Please try again.");
}