gpt4 book ai didi

JavaFX - 在执行后台任务时有什么方法可以进入 JavaFX 线程吗?

转载 作者:行者123 更新时间:2023-12-02 12:37:54 25 4
gpt4 key购买 nike

我有以下任务,我在其中导入文件。该方法启动一个带有 ProgressBar 的 Dialog,并将 ProgressBar 中的 ProgressProperty 绑定(bind)到任务的 ProgressProperty。现在我想检查 ProgressBar 是否已经完成,但我必须将 ProgressBar 放在一个特殊的类中,并且在执行任务时无法访问任何其他类的方法。现在,我的问题是,如何确保程序检查 ProgressBar 是否完成,因为只有当 ProgressBar 完成时我的对话框才会关闭,而目前,对话框永远不会关闭。这是我的代码:

public void readFile(File chat) {
Task<Void> task = new Task<Void>() {

@Override
protected Void call() throws Exception {
if(chat.getName().contains("KakaoTalk_")) {
String s = "";
String gesamt = "";
double laenge = 0;
try(BufferedReader brCount = new BufferedReader(new FileReader(chat))) {
while((s=brCount.readLine())!=null) {
laenge++;
}
} catch (IOException e) {
System.out.println("Fehler beim zählen");
}
double momentanErreicht = 0;
try(BufferedReader br = new BufferedReader(new FileReader(chat))) {
while((s=br.readLine())!=null) {
momentanErreicht++;
updateProgress(momentanErreicht, laenge);
s = s.replace("ß", "ß");
s = s.replace("ö", "ö");
s = s.replace("ü", "ü");
s = s.replace("ä", "ä");
s = s.replace("Ä", "Ä");
s = s.replace("Ãœ", "Ü");
s = s.replace("Ö", "Ö");
gesamt += s+"\n";
}
} catch (FileNotFoundException e1) {
System.out.println("File not found");
} catch (IOException e2) {
System.out.println("IOException");
}
mp.isFortschrittDialogCompleted();
mp.eingabeSetText(gesamt);
setChat(mp.eingabeGetText());
getChat();
} else mp.mhNichtPassendesFile();
return null;
}
};
mp.progressP().bind(task.progressProperty());
mp.startFortschrittDialog();
Thread th = new Thread(task);
th.setDaemon(true);
th.start();
mp.isFortschrittDialogCompleted();
}

这也是我的 MyRootPane (mp),其中执行的方法导致:

    public void eingabeSetText(String eingabe) {
this.eingabe.setText(eingabe);
}
public String eingabeGetText() {
return eingabe.getText();
}
public void startFortschrittDialog() {
fd.show();
}
public void endFortschrittDialog() {
fd.close();
}
public void isFortschrittDialogCompleted() {
if(fd.isCompleted()) endFortschrittDialog();
}
public DoubleProperty progressP() {
return fd.getPBProgressProperty();
}

以及带有进度条的对话框:

public class FortschrittDialog extends Dialog {

private ProgressBar pb = new ProgressBar();

public FortschrittDialog() {
pb.setPrefWidth(500);
pb.setProgress(-1f);

getDialogPane().setContent(pb);
}
public DoubleProperty getPBProgressProperty() {
return pb.progressProperty();
}
public boolean isCompleted() {
if(pb.getProgress()==1.0) return true;
else return false;
}
}

我希望任何人都能理解我的问题,并能给我一个快速、简单的解决方案,如果可能的话,甚至附上解释。如果您缺少某些代码,请告诉

最佳答案

根据其中之一javafx.scene.control.Dialog<R> won't close on pressing "x"问题的答案,如果您的对话框 Pane 上有定义的按钮,则只能关闭对话框,然后您可以执行如下操作:

    Window window = dialog.getDialogPane().getScene().getWindow();
window.setOnCloseRequest(event -> dialog.close());

然后正如@James_D在评论中提到的,您可以使用

    task.setOnSucceeded(event -> window.hide());

这是答案中与您相关的部分:

JavaFX dialogs can only be closed 'abnormally' (as defined above) in two situations:

  • When the dialog only has one button,
  • When the dialog has multiple buttons, as long as one of them meets one of the following requirements:

    • The button has a ButtonType whose ButtonData is of type ButtonData.CANCEL_CLOSE.
    • The button has a ButtonType whose ButtonData returns true when ButtonData.isCancelButton() is called. ...

如果您使用此解决方案,则不必使用 doublePropertyisCompleted() 方法。

关于JavaFX - 在执行后台任务时有什么方法可以进入 JavaFX 线程吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45078341/

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