2013-05-19 56 views
1

需要創建具有以下功能的JSpinner帶顯示格式,僅限數字和手動編輯的JSpinner

  • 範圍應該是0到1000,增量爲10。
  • 顯示格式應該是4位數。 (例如:10 - > 0010)
  • 它必須允許用戶手動輸入值。
  • 它不應該允許數字以外的字符。
  • 它不應該允許輸入超過3位數的值。

這是我目前實施:

spinnerUpDown.setModel(new SpinnerNumberModel(0,0,1000,10)); 
spinnerUpDown.setEditor(new JSpinner.NumberEditor(spinnerUpDown,"0000")); 
JFormattedTextField txt = ((JSpinner.NumberEditor) spinnerUpDown.getEditor()).getTextField(); 
((NumberFormatter) txt.getFormatter()).setAllowsInvalid(false); 

問題與實現,它不會允許用戶手動輸入一個值。

如果我刪除行:

((NumberFormatter) txt.getFormatter()).setAllowsInvalid(false); 

這將讓我手動輸入值,但它允許同時輸入字母。

任何建議來解決這個問題。 謝謝!

+2

+1 1做)不知道,確實必須有輸入掩碼和掩碼格式化程序和一些驗證程序,不知道該怎麼做,2.)'該實現的問題是,它不允許用戶手動輸入值。 '將通過DocumentFilter與模式解決(多次在這裏提出,順便說一句,我在這裏發佈了幾次JSpinner&DocumentFilter) – mKorbel

+1

我發現你對容許值的描述很容易混淆。你能否展示一些符合所有規則的「樣本值」? –

+0

@Andrew Thompson它應該允許0到1000之間的所有值。當前實現的問題是,當用戶選擇所有當前值並輸入新值時,它將只接受第一個數字。例如:如果當前值是25,那麼它將顯示爲0025。在用戶選擇所有4位數並嘗試輸入10之後,它將顯示0001並丟失選擇。 –

回答

2

JSpinner通常使用JTextComponent作爲其編輯器。您可以獲得編輯並將其應用DocumentFilter

這將允許您過濾進入文檔的文本。

檢查這些,經常被引用,examples

JFormattedTextField是安裝它自己的DocumentFilter。您可以通過提供自己的PlainDocument返回它自己的過濾器

import java.awt.EventQueue; 
import java.awt.GridBagLayout; 
import javax.swing.JFrame; 
import javax.swing.JSpinner; 
import javax.swing.SpinnerNumberModel; 
import javax.swing.UIManager; 
import javax.swing.UnsupportedLookAndFeelException; 
import javax.swing.text.AbstractDocument; 
import javax.swing.text.AttributeSet; 
import javax.swing.text.BadLocationException; 
import javax.swing.text.DocumentFilter; 
import javax.swing.text.JTextComponent; 
import javax.swing.text.PlainDocument; 

public class TestSpinner01 { 

    public static void main(String[] args) { 
     new TestSpinner01(); 
    } 

    public TestSpinner01() { 
     EventQueue.invokeLater(new Runnable() { 
      @Override 
      public void run() { 
       try { 
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); 
       } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) { 
       } 

       JSpinner spinnerUpDown = new JSpinner(); 
       spinnerUpDown.setModel(new SpinnerNumberModel(0, 0, 1000, 10)); 
       spinnerUpDown.setEditor(new JSpinner.NumberEditor(spinnerUpDown, "0000")); 
       System.out.println(spinnerUpDown.getEditor()); 


       JFrame frame = new JFrame("Test"); 
       frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); 
       frame.setLayout(new GridBagLayout()); 
       frame.add(spinnerUpDown); 
       frame.pack(); 
       frame.setLocationRelativeTo(null); 
       frame.setVisible(true); 

       PlainDocument doc = new PlainDocument() { 
        private TestFilter filter; 
        @Override 
        public DocumentFilter getDocumentFilter() { 
         if (filter == null) { 
          filter = new TestFilter(); 
         } 
         return filter; 
        } 

       }; 

       JTextComponent txt = ((JSpinner.DefaultEditor) spinnerUpDown.getEditor()).getTextField(); 
       txt.setDocument(doc); 
      } 
     }); 
    } 

    public class TestFilter extends DocumentFilter { 

     @Override 
     public void remove(DocumentFilter.FilterBypass fb, int offset, int length) throws BadLocationException { 
      System.out.println("remove"); 
      super.remove(fb, offset, length); 
     } 

     @Override 
     public void insertString(DocumentFilter.FilterBypass fb, int offset, String string, AttributeSet attr) throws BadLocationException { 
      System.out.println("insert"); 
      super.insertString(fb, offset, string, attr); 
     } 

     @Override 
     public void replace(DocumentFilter.FilterBypass fb, int offset, int length, String text, AttributeSet attrs) throws BadLocationException { 
      System.out.println("Replace..."); 
      super.replace(fb, offset, length, text, attrs); 
     } 
    } 
} 

奇怪的是,你的示例代碼的工作很適合我克服這一點,但實際上我的問題是與格式

+0

我只是嘗試添加一個DocumentFilter:JFormattedTextField txt =((JSpinner.NumberEditor)spinnerUpDown.getEditor())。getTextField( );((AbstractDocument)txt.getDocument())。setDocumentFilter(new NumericAndLengthFilter(4))'但似乎從來沒有使用過濾器。我用JTextField嘗試相同的文檔過濾器,它工作正常。 –

+0

謝謝你的代碼示例。它完美的作品。唯一不同的是我直接設置DocumentFilter,並使用過濾器設置Document。我知道爲什麼它的行爲如此。任何方式感謝您的答案。 –

0

註冊KeyListener對於JFormattedTextField。在keyPressed()方法中,如果鍵入的鍵是非數字字符,則可以將KeyEvent的字符設置爲空字符串。所以沒有什麼會出現在JFormattedTextField

+2

你應該永遠不要我們的KeyListener來嘗試和過濾文本組件 – MadProgrammer