JComboBox和文件读取

时间:2013-02-11 16:01:41

标签: java swing jcombobox

我有控制用户名和密码的登录页面。

我希望在combobox中选择admin时,程序应该将给定的用户名和密码与我的“LoginInformation.txt”文件中的第一行进行比较。

当在组合框中选择用户时,程序应该将给定的用户名和密码与“LoginInformation.txt”文件中的第二行进行比较。

但是,我的代码无法正常运行!

public class LoginFrame extends javax.swing.JFrame {

private String username;
private char[] Password;
private void LoginButtonActionPerformed(java.awt.event.ActionEvent evt) {

        username=String.valueOf(jTextField1.getText());
        Password=jPasswordField1.getPassword();

        if(jComboBox1.getSelectedIndex() == 0){
            if(adminCanGoNext()) {
              goAdminMainPage();
          }
           else{
                ErrorMessageLabel.setText("Did Not Match");
            }
        }


        else if(jComboBox1.getSelectedIndex() == 1){
            if(userCanGoNext()){
                goUserMainPage();
            }
        }



public boolean adminCanGoNext() throws IOException{
    FileReader fr=new FileReader("LoginInformation.txt");
    BufferedReader br=new BufferedReader(fr);
    String line;
    while((line=br.readLine()) != null){
        String[] infos=line.split("     ");
        String value=infos[0];
        String usern=infos[1];
        String pass=infos[2];

        if(usern.equals(username.trim()) && pass.equals(String.valueOf(Password))){
            return true;
        }
    }
    return false;
}

public void goAdminMainPage() {
          // Admin page
}


public boolean userCanGoNext() throws IOException{
    BufferedReader br=new BufferedReader(new FileReader("LoginInformation.txt"));
    String line;
    while( (line=br.readLine()) != null ){
        String[] celledinfo= line.split("     ");
        String userN=celledinfo[4];
        String passN=celledinfo[5];

        if(userN.equals(username.trim()) && passN.equals(String.valueOf(Password))){
            return true;
        }
    }
    return false;
}

public void goUserMainPage(){
          // User Page

}
}

我的txt文件:

Admin:     1     2
User:     1     3

我不会通过netbeans编写生成的代码。 (我在jcombobox中的第一个索引是admin,第二个是用户)

感谢您的帮助。

1 个答案:

答案 0 :(得分:2)

adminCanGoNext中,您正在针对密码文件的每一行检查用户/密码。您没有注意用户选择“用户”或“管理员”这一事实。 (这样你只需要匹配以“Admin:”开头的行或者与“User:”开头的行匹配)

userCanGoNext中:存在类似的错误,但另外,您在索引4和5处寻找用户名和密码。 根据您发布的文件模板:拆分产生的数组永远不会超过3个元素。