作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想知道是否有某种魔法可以用来绕过 IllegalStateException 并允许 JTextField“尝试在通知中发生变化”,或者换句话说,如果它的监听器被触发则设置它自己的文本。
供您引用,我正在尝试编写一个自动完成函数,该函数返回 12 个枚举范围内最有可能的匹配项以响应用户在 JTextField 中的输入。
这是代码示例。你必须原谅我笨拙的算法,它会发出枚举结果。我用注释突出显示了产生异常的代码:
jtfElement1.addCaretListener(new CaretListener() {
@Override
public void caretUpdate(CaretEvent e) {
String s = jtfElement1.getText();
int[] attributes = new int[13];
// iterate through each enum
for (BaseEnumAttributes b: BaseEnumAttributes.values()) {
// iterate through the length of the current text in jtfElement1
for (int i = 0; i < s.length(); i++) {
if (s.length() <= b.toString().length()) {
if (b.toString().charAt(i) == s.charAt(i)) {
// increase the number of "hits" noted for that enum
attributes[b.ordinal()] = attributes[b.ordinal()] + 1;
}
}
}
}
int priorC = 0;
int rightC = 0;
// iterate through the "array" of enums to find the highest score
for (int j = 0; j < attributes.length; j++) {
if (attributes[j] > priorC) {
priorC = attributes[j];
rightC = j;
}
}
if (!s.equals("")) {
// assign to b the Enum corresponding to the "array" with highest score
BaseEnumAttributes b = BaseEnumAttributes.values()[rightC];
iController.updateInputElement1String(b.toString());
// THIS TRIGGERS EXCEPTION
jtfElement1.setText(b.toString());
}
}
});
最佳答案
您最好使用文档过滤器或自定义文档。
如果文档在事件派发期间没有保持不变,其他听众期望看到什么?
关于java - 在 Java/Swing 中,有没有办法合法地使用 "attempt to mutate in notification"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3599519/
我是一名优秀的程序员,十分优秀!