gpt4 book ai didi

java - 在 Java/Swing 中,有没有办法合法地使用 "attempt to mutate in notification"?

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:51:15 25 4
gpt4 key购买 nike

我想知道是否有某种魔法可以用来绕过 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/

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