JPasswordField KeyPress字符串长度错误?

时间:2012-10-19 02:08:33

标签: java swing netbeans string-length jpasswordfield

我正在尝试在Java Swing(Netbeans)中更改JPasswordField的背景颜色。

这就是我所拥有的:

private void pstxtPasswordKeyPressed(java.awt.event.KeyEvent evt) {                                         

    //Get string from password box
    userPassword = new String(pstxtPassword.getPassword());

    //If password is 8+ characters
    //(one less because string counting begins at 0)
    if (userPassword.length() >= 7) {

        //Set password input box background color to green
        pstxtPassword.setBackground(Color.green);
    }

    else { //If password is less than 8 characters

        //Set password input box background color to red
        pstxtPassword.setBackground(Color.red);
    }

}

一切正常,除非我退格。键入8个以上字符后退格时,颜色不会变回红色,直到字段中只剩下5个字符。

帮助将不胜感激,我是java编程和Netbeans的新手。

编辑: 我已经改变了我的代码,

    //If password is 8+ characters
    if ((pstxtPassword.getPassword()).length >= 8) {

        //Set password input box background color to green
        pstxtPassword.setBackground(Color.green);
    }

    else { //If password is less than 8 characters

        //Set password input box background color to red
        pstxtPassword.setBackground(Color.red);
    }

这段代码似乎对我有意义,但在测试中,颜色在第9个字符处变为绿色;当退格时,它在6处变回红色。这似乎与我在代码为>= 7时的问题相同,其中第8个字符的颜色变为绿色,但在5个字符处变为红色。

After typing 9 characters, the component turns green

输入9个字符后,组件变为绿色

After backspacing (starting from 9), component remains green until there are 6 characters

退回后(从9开始),组件保持绿色,直到有6个字符

这很奇怪,因为我在此程序的按钮中有类似的代码,显示错误消息。该代码工作正常。 这是一个KeyPress问题,可能与退格键有关吗?

5 个答案:

答案 0 :(得分:8)

另外,检查getPassword()返回的数组的长度,而不是从该数组构造的String的长度。 String存在安全风险,因为它将使用易于找到的名称userPassword无限期地存储。

附录:这是使用DocumentListener的Robin example的相关suggestion。我猜你的主要听众在KeyEvent处理之前看到了JPasswordField

答案 1 :(得分:8)

由于JPasswordFieldJTextComponent延伸,您可以附加DocumentListener,这是更安全的方式来更新内容的每次更改时的背景颜色。

答案 2 :(得分:7)

if (userPassword.length() >= 7)

此if语句与您的评论不符:

//如果密码是8个以上的字符

实际代码表示如果有7个以上的字符,则将背景变为绿色。因此,当你退格时,当你剩下6个字符时它应该将背景变成红色。

我认为您的困惑在此评论中显示:

//(one less because string counting begins at 0)

您要描述的是索引 String中的字符从0开始,例如当您使用charAt()或{{1 }}。这意味着第一个字符位于索引subString(),第二个字符位于索引0,等等。另一方面,1返回length()中的字符数。这与索引无关,因此您不需要减去1。

答案 3 :(得分:0)

我使用KeyRelease而不是KeyPress解决了这个问题,试试看我的朋友

答案 4 :(得分:0)

使用

private void pstxtPasswordKeyReleased(java.awt.event.KeyEvent evt) 

而不是

private void pstxtPasswordKeyPressed(java.awt.event.KeyEvent evt)