1

有人可以帮我如何在运行时将 Text 设置为 JTextFields 的 null,我希望我的文本字段在长度等于 "13" 时为空。它将要求用户输入文本(代码大小最大为 13),然后输入将更改为 null 以用于另一个进程。

code = new JextField(15); 
code.setForeground(new Color(30, 144, 255));
code.setFont(new Font("Tahoma", Font.PLAIN, 16));
code.setHorizontalAlignment(SwingConstants.CENTER);   
code.setBounds(351, 76, 251, 38);
panel_2.add(code);

code.getDocument().addDocumentListener(new DocumentListener() {
public void changedUpdate(DocumentEvent e) {
  test();
}
public void removeUpdate(DocumentEvent e) {
  test();
}
public void insertUpdate(DocumentEvent e) {
   test();
}
public void test() {
if(code.getText().length()==13){                  
   code.setText("");                
 }                
}

我得到下一个错误:

java.lang.IllegalStateException: Attempt to mutate in notification
    at javax.swing.text.AbstractDocument.writeLock(Unknown Source)
    at javax.swing.text.AbstractDocument.replace(Unknown Source)
    at javax.swing.text.JTextComponent.setText(Unknown Source)
4

2 回答 2

4

ADocumentListener不能用于修改Documenta的底层证券JTextComponent。改用 a DocumentFilter

添加:

AbstractDocument d = (AbstractDocument) code.getDocument();
d.setDocumentFilter(new MaxLengthFilter(13));

DocumentFilter: _

 static class MaxLengthFilter extends DocumentFilter {

   private final int maxLength;

   public MaxLengthFilter(int maxLength) {
      this.maxLength = maxLength;
   }

   @Override
   public void replace(DocumentFilter.FilterBypass fb, int offset,
         int length, String text, AttributeSet attrs)
               throws BadLocationException {

      int documentLength = fb.getDocument().getLength();
      if (documentLength >= maxLength) {
         super.remove(fb, 0, documentLength);
      } else {
         super.replace(fb, offset, length, text, attrs);
      }
   }
}
于 2013-07-16T00:39:51.283 回答
3

您不能从 DocumentListener 中更新 Document。将代码包装在 invokeLater() 中,以便将代码添加到 EDT 的末尾。

SwingUtilities.invokeLater(new Runnable()
{
    public void run()
    {
        if (code.getDocument().getLength() >= 13)
        {                  
            code.setText("");                
        }
    }
});
于 2013-07-16T01:38:52.360 回答