gpt4 book ai didi

java - 如何使用通过以太网在另一个线程中接收的数据更新 javaFX 表

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

我想知道如何使用 socketDataReceiver 线程中每 1 秒通过网络接收的数据更新 JavaFX 表,并将该数据放入 HashMap 中。当数据放入 HashMap(定期更新)时,我希望 javaFX 表使用 City_Id、纬度、经度信息进行更新。这是示例代码

GPSLocation.java

public class GPSLocation {

public Short cityId;
public Double lat;
public Double lon;

public GPSLocation(short cityId, double lat, double lon) {
this.cityId = cityId;
this.lat = lat;
this.lon = lon;
}
}

CityCentreLocation.java

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class CityCentreLocation extends Application {

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

@Override
public void start(Stage primaryStage) {

TableView tableView = new TableView();


TableColumn<Short, GPSLocation> column1 = new TableColumn<>("City_Id");
column1.setCellValueFactory(new PropertyValueFactory<>("cityId"));

TableColumn<Double, GPSLocation> column2 = new TableColumn<>("Latitude");
column2.setCellValueFactory(new PropertyValueFactory<>("lat"));


TableColumn<Double, GPSLocation> column3 = new TableColumn<>("Longitude");
column3.setCellValueFactory(new PropertyValueFactory<>("lon"));


tableView.getColumns().add(column1);
tableView.getColumns().add(column2);
tableView.getColumns().add(column3);

VBox vbox = new VBox(tableView);

Scene scene = new Scene(vbox);

primaryStage.setScene(scene);

primaryStage.show();
}

}

ReceiverThread.java

Map<Short, GPSLocation> cityLocations = new HashMap<Short, GPSLocation>();

...
//Received socket data is present in buff of length 18

objGPSLocation.cityId = ByteBuffer.wrap(buff, 0, 2).order(ByteOrder.BIG_ENDIAN).getShort();
objGPSLocation.lat = ByteBuffer.wrap(buff, 2, 8).order(ByteOrder.BIG_ENDIAN).getDouble();
objGPSLocation.lon = ByteBuffer.wrap(buff, 10, 8).order(ByteOrder.BIG_ENDIAN).getDouble();

cityLocations .put(objGPSLocation.cityId, objGPSLocation);

...

现在我想在 javaFX 表中填充此 map 数据。

最佳答案

对于您手头的任务,没有单一的正确答案。

最简单、快速但肮脏的方法是从表中获取项目,并将此 ObservableList 的引用传递给接收器线程。当您的接收者线程收到一个项目时,您只需将其添加到列表中即可。但您必须在 JavaFX 平台线程中执行此操作。

在您的应用程序类中:

ObservableList<GPSLocation> items = tableView.getItems();
ReceiverThread receiver = new ReceiverThread(items);
receiver.start()
...

在您的接收器中 - 假设您有一个实例变量 items:

GPSLocation location = ...;
Platform.runLater(() -> items.add(location));

这基本上应该可以解决问题。

不过,它不是很干净。您的接收者不应该知道与 UI 相关的内容,例如 ObservableListPlatform。您的接收者实际上应该将新位置推送到某种接口(interface)或队列。这只是为了让您开始。

关于java - 如何使用通过以太网在另一个线程中接收的数据更新 javaFX 表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58938270/

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