gpt4 book ai didi

Javafx:如果服务消息更新(标签绑定(bind)到消息),标签变为空白

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:00:36 24 4
gpt4 key购买 nike

我是 java 和 javaFx 的新手,我正在尝试处理一个需要在标签上显示一些实时传入数据的项目。

我将我的标签绑定(bind)到服务对象的消息,该服务对象不断使用传入数据更新其消息。但是,消息正在更新,但标签变为空白。

没有弹出错误,也没有捕获到异常。任何人都可以指出是什么使标签空白而不是与 service.message 一起更新以及如何修复它?提前致谢。

下面是我正在尝试做的一个简化示例,其中数据源被替换为随机数列表。

Controller 类:我将 scheduledservice 对象放入其中,并将其绑定(bind)到标签。

import javafx.concurrent.ScheduledService;
import javafx.concurrent.Task;
import javafx.concurrent.WorkerStateEvent;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.util.Duration;

public class Controller {
@FXML
Button startButton;

@FXML
Label updateLabel;

@FXML
void display(ActionEvent event) throws Exception{
Steaming steaming = new Steaming();

ScheduledService<Void> service = new ScheduledService<Void>() {
protected Task<Void> createTask() {
return new Task<Void>() {
protected Void call() {
// Call the method and update the message

updateMessage(steaming.processData());
return null; // Useful in case you want to return data, else null
}
};
}

};
service.setPeriod(Duration.seconds(1)); //Runs every 1 seconds
service.setOnSucceeded(new EventHandler<WorkerStateEvent>() {
@Override
public void handle(WorkerStateEvent t) {
System.out.println("Message:" + service.messageProperty());
}
});

updateLabel.textProperty().bind(service.messageProperty());
service.start();

}
}

Streaming 类包含一个列表,我在其中生成 1000 个随机整数。 processData 方法将返回并删除列表中的第一个元素。

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;

public class Steaming{

List<Integer> numbers;

Steaming()
{
numbers = new ArrayList<>();
for (int i = 0; i < 1000; i++) {
numbers.add(i);
}

Collections.shuffle(numbers);
}

public String processData (){
String s = "loading";
try {
s = this.numbers.get(0).toString();
numbers.remove(0);
} catch (Exception e) {
e.printStackTrace();
}
return s;
}
}

主类,展示初级阶段

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception{
Parent root = FXMLLoader.load(getClass().getResource("/sample.fxml"));
primaryStage.setTitle("Hello World");
primaryStage.setScene(new Scene(root, 300, 275));
primaryStage.show();

}

public static void main(String[] args) {
launch(args);
}
}

FXML文件

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>

<GridPane alignment="center" hgap="10" vgap="10" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.Controller">
<columnConstraints>
<ColumnConstraints />
</columnConstraints>
<rowConstraints>
<RowConstraints />
</rowConstraints>
<children>
<HBox prefHeight="100.0" prefWidth="200.0">
<children>
<Button fx:id="startButton" mnemonicParsing="false" onAction="#display" text="Button">
<HBox.margin>
<Insets right="5.0" />
</HBox.margin>
</Button>
<Label fx:id="updateLabel" prefHeight="26.0" prefWidth="105.0" text="loading">
<HBox.margin>
<Insets left="10.0" />
</HBox.margin></Label>
</children>
</HBox>
</children>
</GridPane>

运行结果:这是服务开始前和服务开始后的两张照片。

点击按钮前标签显示“正在加载”

enter image description here

点击按钮后标签不显示

enter image description here

这是程序的部分终端结果。

Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 33]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 200]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 389]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 188]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 915]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 76]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 205]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 583]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 181]
Message:StringProperty [bean: sample.Controller$1@7db1e6b2, name: message, bound, value: 872]

我也是这个社区的新人,如果我在帖子中做错了什么或者违反了这里的任何规则,也请指出。非常感谢!

最佳答案

ScheduledService 成功时,它会为下一个执行周期重新安排自己。此过程的一部分是将某些属性“重置”为其默认值,包括将 message 属性设置为 ""1。因此,发生的事情是您的服务成功、重新启动,并且消息设置回 "" 的速度太快,以至于无法在 Label 中呈现。

由于您的代码除了更新消息外什么都不做,因此一种解决方案是返回 streaming.processData() 的结果。然后,您将绑定(bind)到 ScheduledServicelastValue 属性。它必须是 lastValue 而不是 value 因为后者在重置/重启时也会被清除2

ScheduledService<String> service = new ScheduledService<>() {

@Override
protected Task<String> createTask() {
return new Task<>() {

@Override
protected String call() throws Exception {
return streaming.processData();
}

};
}

};

updateLabel.textProperty().bind(service.lastValueProperty());

1。我无法找到关于此的文档,但 Service.reset() 的实现表明情况确实如此(ScheduledService extends Service) .即使 reset() 没有清除属性,启动服务的过程包括将属性绑定(bind)到底层 Task——这是新创建的,没有它的任何属性集。

2。此行为是 documented .

关于Javafx:如果服务消息更新(标签绑定(bind)到消息),标签变为空白,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54603753/

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