4

我的 JTable 有一个密码字段编辑器。当用户单击编辑另一个字段时,如果文本长度小于 8 位,我想显示一条错误消息。我试过焦点听众。但它不起作用。请帮助我,因为我刚刚开始使用 java swing。

class PasswordEditor extends DefaultCellEditor 
{

    TextBox m_passWord = new TextBox(); 
    public PasswordEditor() {
        super(new TextBox());
    }

    @Override
    public Object getCellEditorValue() {

        return this.m_passWord.getText();
    }

    @Override
    public Component getTableCellEditorComponent(JTable table,
            Object value, boolean isSelected, int row, int column) {

        Object fieldValue = value;
        if(null == fieldValue)
            fieldValue = Constants.EMPTY_STRING;

        this.m_passWord.addInputMethodListener(new InputMethodListener() {

            @Override
            public void inputMethodTextChanged(InputMethodEvent event)
            {
                // TODO Auto-generated method stub

            }

            @Override
            public void caretPositionChanged(InputMethodEvent event)
            {
                // TODO Auto-generated method stub

            }
        })
        this.m_passWord.addFocusListener(new FocusListener() {

            @Override
            public void focusLost(FocusEvent e)
            {
                if (!e.isTemporary()) {
                      String content = PasswordEditor.this.m_passWord.getText();
                      System.out.println((content));
                }

            }

            @Override
            public void focusGained(FocusEvent e)
            {
                //TODO init
            }
        });

        this.m_passWord.setEditable(true);
        this.m_passWord.setText(fieldValue.toString());
        return this.m_passWord;
    }


}
4

3 回答 3

10

据我了解这个问题,它是关于验证编辑器中的输入(保护自己免受无效值的模型是另一个故事,IMO)并在用户尝试提交输入时通知他/她的错误。

一个简单的方法是使用 InputVerifier:

  • 在其 verify 方法中实现验证规则
  • 在其 shouldYieldFocus 中实施通知
  • 子类 DefaultCellEditor 并覆盖其 stopCellEditing 以调用 shouldYieldFocus 并返回其结果(又名:拒绝提交编辑)

一些代码片段:

final InputVerifier iv = new InputVerifier() {

    @Override
    public boolean verify(JComponent input) {
        JTextField field = (JTextField) input;
        return field.getText().length() > 8;
    }

    @Override
    public boolean shouldYieldFocus(JComponent input) {
        boolean valid = verify(input);
        if (!valid) {
            JOptionPane.showMessageDialog(null, "invalid");
        }
        return valid;
    }

};
DefaultCellEditor editor = new DefaultCellEditor(new JTextField()) {
    {
        getComponent().setInputVerifier(iv);
    }

    @Override
    public boolean stopCellEditing() {
        if (!iv.shouldYieldFocus(getComponent())) return false;
        return super.stopCellEditing();
    }

    @Override
    public JTextField getComponent() {
        return (JTextField) super.getComponent();
    }

};

JTable table = new JTable(10, 2);
table.setDefaultEditor(Object.class, editor);
于 2012-11-22T10:34:26.267 回答
5

覆盖 stopCellEditing() 并在其中实现条件。

 class PasswordEditor extends DefaultCellEditor 
{

    TextBox m_passWord = new TextBox(); 
    public PasswordEditor() {
        super(new TextBox());
    }

            @Override
    public boolean stopCellEditing()
    {
        if(getCellEditorValue().toString().length() < 8)
        {
            JOptionPane.showMessageDialog(UsmUserView.this.m_Parent, "Password Must Be 8 Bytes Long !! Please Check");
            return false;
        }
        fireEditingStopped();
        return true;
    }

    @Override
    public Object getCellEditorValue() {

        return this.m_passWord.getText();
    }

    @Override
    public Component getTableCellEditorComponent(JTable table,
            Object value, boolean isSelected, int row, int column) {

        Object fieldValue = value;
        if(null == fieldValue)
            fieldValue = Constants.EMPTY_STRING;

        this.m_passWord.setEditable(true);
        this.m_passWord.setText(fieldValue.toString());
        return this.m_passWord;
    }


}
于 2012-11-28T05:26:44.457 回答
1

覆盖 stopCellEditing() ,您可以尝试以下代码来获取错误单元格的焦点。

class PasswordEditor extends DefaultCellEditor 
{

    private TextBox m_passWord = new TextBox(); 
    public PasswordEditor() {
        super(new TextBox());
    }

            @Override
    public boolean stopCellEditing()
    {
        if(getCellEditorValue().toString().length() < 8)
        {
            // Text box will get the focus and will shown in Red line as border for that cell.
            TextBox aTextBox = (TextBox)getComponent();
            aTextBox.setBorder(new LineBorder(Color.red));
            aTextBox.selectAll();
            aTextBox.requestFocusInWindow();
            JOptionPane.showMessageDialog(UsmUserView.this.m_Parent, "Password Must Be 8 Bytes Long !! Please Check");
            return false;
        }
        return super.stopCellEditing();
    }

    @Override
    public Object getCellEditorValue() {

        return this.m_passWord.getText();
    }

    @Override
    public Component getTableCellEditorComponent(JTable table,
            Object value, boolean isSelected, int row, int column) {

        Object fieldValue = value;
        if(null == fieldValue)
            fieldValue = Constants.EMPTY_STRING;

        this.m_passWord.setEditable(true);
        this.m_passWord.setText(fieldValue.toString());
        return this.m_passWord;
    }


}
于 2013-11-11T07:48:27.467 回答