0

この構造を持つ Sybase のテーブルからの情報で満たされた Hashmap があります

-索引 - キャラクター

----1---- 1234567890

----2----- abcdefg..

JtextField から拡張された新しい CustomJTextField を設定しようとしているので、このコントロールには MASK という名前の属性があり、この属性にマスク番号を次のように設定できます。

 customtextField = new CustomTextField(20);
 customtextField.set_MASK(1);

私はすでにいくつかの追加の属性で動作する customtextField を持っています。マスク属性の動作により、ユーザーはテーブルに含まれていない文字を書くことができません。そのため、customtextField が MASK(1) として設定されている場合、ユーザーは数字だけを書く

DocumentFilter を使用するためのヘルプが必要です。または、任意の提案が必要です。データベースからテーブルから辞書を取得する必要があります (ユーザー要件)。

編集*

推奨により、配列に含まれる型文字のみを使用できる DocumentFilter の例を取得しようとしています (HAshMap から作成)

4

1 に答える 1

2

代わりにドキュメント フィルターを使用することもできます。

これにより、事後検証に頼るのではなく、ユーザーが実際に入力できる内容を制限するフィルターを構築できます。

ここでいくつかの例を確認してください

更新しました

これは驚くほど簡単です。リンクした例を使用します。あなたのニーズに合わせてそれらを適応させることができると確信しています。

ここに画像の説明を入力

public class TestDocumentFilter01 {

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

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

                JFrame frame = new JFrame("Test");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.setLayout(new BorderLayout());
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }

        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.gridwidth = GridBagConstraints.REMAINDER;
            add(createField("1234567890"), gbc);
            add(createField("stackoverflow"), gbc);
            add(createField("abcdefghijklmnopqrstuvwxyz "), gbc);
        }

        protected JTextField createField(String mask) {
            JTextField field = new JTextField(10);
            MaskFilter df = new MaskFilter();
            df.setMask(mask);
            ((AbstractDocument) (field.getDocument())).setDocumentFilter(df);
            return field;
        }

    }

    public class MaskFilter extends DocumentFilter {

        private char[] maskSet;
        private String mask;

        public void setMask(String mask) {
            this.mask = mask;
            this.maskSet = mask.toCharArray();
            Arrays.sort(this.maskSet);
        }

        public String getMask() {
            return mask;
        }

        public void insertString(DocumentFilter.FilterBypass fb, int offset,
                                                         String string, AttributeSet attr)
                        throws BadLocationException {
            StringBuffer buffer = new StringBuffer(string);
            for (int i = buffer.length() - 1; i >= 0; i--) {
                char ch = buffer.charAt(i);
                if (Arrays.binarySearch(maskSet, ch) < 0) {
                    buffer.deleteCharAt(i);
                }
            }
            super.insertString(fb, offset, buffer.toString(), attr);
        }

        public void replace(DocumentFilter.FilterBypass fb,
                                                int offset, int length, String string, AttributeSet attr) throws BadLocationException {
            if (length > 0) {
                fb.remove(offset, length);
            }
            insertString(fb, offset, string, attr);
        }
    }
}
于 2013-02-11T03:05:09.490 に答える