gpt4 book ai didi

java - IDocumentFilter 使用 HashMap 作为字典 Menu 来验证 JTextField

转载 作者:行者123 更新时间:2023-12-02 07:17:05 27 4
gpt4 key购买 nike

我有一个 HashMap ,其中填充了 Sybase 中表中的信息,具有以下结构

-索引 - 字符

----1---- 1234567890

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

我正在尝试设置一个从 JtextField 扩展的新 CustomJTextField,因此该控件将具有一个名为 MASK 的属性,并且我可以在此属性中设置 Mask 编号,如下所示:

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

我已经有了可以使用一些额外属性的customtextField,mask 属性的行为不会让用户写入表中未包含的字母,因此如果 customtextField 设置为 MASK(1) ,用户将只能写入数字

我需要使用文档过滤器的帮助,或任何建议,我需要从数据库的表中获取字典,(用户要求),

编辑*

根据建议,我试图获取一个 DocumentFilter 的示例,该示例仅允许使用数组中包含的类型字符(从 HAshMap 创建)

最佳答案

您可能希望改用 Document Filter

这将允许您构造过滤器来限制用户实际可以输入的内容,而不是依赖于后验证。

检查 here 以获取一些示例

已更新

这非常简单。使用我链接的示例。我相信您能够根据您的需求进行调整。

enter image description here

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);
}
}
}

关于java - IDocumentFilter 使用 HashMap 作为字典 Menu 来验证 JTextField,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14805251/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com