我类有一个听众。插入比利时身份证并将其放置在textField中后,它似乎已被激活。现在,当发生这种情况时,程序还应该查看该名称是否已插入数据库中,如果尚未插入,则应附加一个样式为警告的上下文菜单。
当我尝试附加上下文菜单时,它出错了,我知道代码可以正常工作,因为我已经在代码中的多个地方使用了它。我收到以下错误:
错误
java.lang.IllegalStateException: Not on FX application thread; currentThread = Thread-4
at com.sun.javafx.tk.Toolkit.checkFxUserThread(Toolkit.java:236)
at com.sun.javafx.tk.quantum.QuantumToolkit.checkFxUserThread(QuantumToolkit.java:423)
at javafx.stage.Window.setShowing(Window.java:921)
at javafx.stage.Window.show(Window.java:937)
at javafx.stage.PopupWindow.showImpl(PopupWindow.java:454)
at javafx.stage.PopupWindow.show(PopupWindow.java:399)
at javafx.scene.control.ContextMenu.doShow(ContextMenu.java:287)
at javafx.scene.control.ContextMenu.show(ContextMenu.java:262)
at util.Validation.attachNotFound(Validation.java:140)
at paginas.CheckOut$1.cardInserted(CheckOut.java:105)
at be.belgium.eid.event.CardAlivePromptTask.run(CardAlivePromptTask.java:79)
听众
private final CardListener cl = new CardListener() {
@Override
public void cardInserted() {
//de laadcirkel wordt zichtbaar wanneer het programma begint met een kaart te lezen.
String fullName;
System.out.println("card connected.");
try {
laadcirkel.setVisible(true);
IDData data = id.getIDData();
//voornaam ophalen, de format is nodig aangezien de reader de eerste naam en de tweede naam geeft.
fullName = StringUtilities.format(data.get1stFirstname());
//achternaam ophalen
fullName = fullName + " " + data.getName();
text_id.setText(fullName);
text_id.autosize();
CheckInOut c = lijst.getByCheckInName(text_id.getText());
if (c != null) {
checkOut(c);
} else {
Validation.attachNotFound(text_id);
}
laadcirkel.setVisible(false);
//reset de layout om een visuele bug op te van in javafx.
laadcirkel.getParent().getParent().setStyle("-fx-font: " + font + "px Tahoma;");
} catch (EIDException ex) {
Logger.getLogger(AanmeldPagina.class.getName()).log(Level.SEVERE, null, ex);
}
}
当我调用Validation.attachNotFound(text_id);时出错。
找不到附件
public static void attachNotFound(TextField field) {
field.setStyle("-fx-text-box-border: red ;-fx-focus-color: red ;");
MenuItem item = new MenuItem("Not found");
ContextMenu menu = new ContextMenu();
menu.getStyleClass().add("error");
menu.setAutoHide(true);
menu.getItems().add(item);
menu.show(field, Side.RIGHT, 10, 0);
field.focusedProperty().addListener((ObservableValue<? extends Boolean> observable, Boolean oldValue, Boolean newValue) -> {
if (newValue) {
menu.show(field, Side.RIGHT, 10, 0);
}
});
}
我希望这可以用一小段代码解决,并且我不必重写我的程序的大部分内容,在此先感谢您。
最佳答案
如果您将attachNotFound
的主体包装起来,就像...
Platform.runLater(new Runnable() {
@Override
public void run() {
...
}
});
... 一切都会好起来的。
这确保了放置在“...”上的代码将在JavaFX线程上执行。 (attachNotNotFound中的代码转到“...”的位置)
关于java - Javafx由于线程分开而无法附加上下文菜单,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36978553/