目前,在我的JavaFX应用程序的开发中,在填充表方面遇到了一个小问题。在我当前的设置中,我有以下内容:
infoColumn.setCellValueFactory(new Callback<TableColumn.CellDataFeatures, ObservableValue>() {
@Override
public ObservableValue call(TableColumn.CellDataFeatures cellDataFeatures) {
DataMessage dataMessage = (DataMessage) cellDataFeatures.getValue();
SimpleStringProperty infoProperty = new SimpleStringProperty("Loading...");
if (dataMessage != null) {
if (isMessageNotification(dataMessage)) {
Notification notification = getNotificationFromMessage(dataMessage);
infoProperty.set(LanguageUtils.getNotificationInfo(dataMessage, notification));
} else if (isMessageRequest(dataMessage)) {
Request request = getRequestFromMessage(dataMessage);
infoProperty.set(LanguageUtils.getRequestInfo(dataMessage, request));
}
}
return infoProperty;
}
});
对LanguageRegistry(我自己的类)的调用使用一些资源来加载与指定对象相关的不同对象。这导致我的应用程序冻结了几秒钟以填充列表,因为这些是通知和请求,它们将实时出现,因此需要在后台加载,因此不会打扰用户。
我最初尝试执行的操作是在另一个线程的“ if(dataMessage!= null)”中运行代码,并在代码执行完成时设置infoProperty字符串的值。不幸的是,这似乎没有用,桌子上只是无限地说“ Loading ...”。
因此,基本上我的问题是标题,我需要我的cellValueFactory代码在单独的线程中运行,以免冻结应用程序。如果问题中有不清楚的地方,请告诉我,我将对其进行更改。
最佳答案
您不能使用单元格值工厂来延迟加载数据。您可以在模型类(DataMessage
)本身中执行此操作,如下例所示:
import java.util.Random;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import java.util.function.Function;
import java.util.stream.IntStream;
import javafx.application.Application;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.ObjectProperty;
import javafx.beans.property.ObjectPropertyBase;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.beans.value.ObservableValue;
import javafx.concurrent.Task;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
public class BackgroundLoadingTableCell extends Application {
private static final Random rng = new Random();
private static final Executor exec = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors(), r -> {
Thread t = new Thread(r);
t.setDaemon(true);
return t ;
});
@Override
public void start(Stage primaryStage) {
TableView<Item> table = new TableView<>();
table.getColumns().add(column("Item", Item::nameProperty));
table.getColumns().add(column("Value", Item::valueProperty));
table.getColumns().add(column("Data", Item::dataProperty));
IntStream.rangeClosed(1, 100).mapToObj(i -> new Item("Item "+i, rng.nextInt(100))).forEach(table.getItems()::add);
primaryStage.setScene(new Scene(new BorderPane(table), 600, 600));
primaryStage.show();
}
private <S,T> TableColumn<S,T> column(String text, Function<S, ObservableValue<T>> property) {
TableColumn<S,T> col = new TableColumn<>(text);
col.setCellValueFactory(cellData -> property.apply(cellData.getValue()));
return col ;
}
public static class Item {
private final StringProperty name = new SimpleStringProperty();
private final IntegerProperty value = new SimpleIntegerProperty();
private final ObjectProperty<String> data = new ObjectPropertyBase<String>() {
@Override
public Object getBean() {
return Item.this;
}
@Override
public String getName() {
return "data";
}
@Override
public String get() {
String value = super.get();
if (value == null) {
Task<String> loadDataTask = new Task<String>() {
@Override
public String call() {
return getData(Item.this.getValue());
}
};
loadDataTask.setOnSucceeded(e -> set(loadDataTask.getValue()));
exec.execute(loadDataTask);
return "Loading..." ;
}
return value ;
}
};
public Item(String name, int value) {
setName(name);
setValue(value);
}
private String getData(int value) {
// simulate long running process:
try {
Thread.sleep(250 + rng.nextInt(500));
} catch (InterruptedException exc) {
Thread.currentThread().interrupt();
}
return "Data for "+value ;
}
public final StringProperty nameProperty() {
return this.name;
}
public final java.lang.String getName() {
return this.nameProperty().get();
}
public final void setName(final java.lang.String name) {
this.nameProperty().set(name);
}
public final IntegerProperty valueProperty() {
return this.value;
}
public final int getValue() {
return this.valueProperty().get();
}
public final void setValue(final int value) {
this.valueProperty().set(value);
}
public final ObjectProperty<String> dataProperty() {
return this.data;
}
public final java.lang.String getData() {
return this.dataProperty().get();
}
public final void setData(final java.lang.String data) {
this.dataProperty().set(data);
}
}
public static void main(String[] args) {
launch(args);
}
}
或者您可以将
DataMessage
视为此单元格的值,然后懒惰地更新cellFactory
中的单元格:import java.util.Random;
import java.util.concurrent.Executor;
import java.util.concurrent.Executors;
import java.util.function.Function;
import java.util.stream.IntStream;
import javafx.application.Application;
import javafx.beans.property.IntegerProperty;
import javafx.beans.property.ReadOnlyObjectWrapper;
import javafx.beans.property.SimpleIntegerProperty;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.beans.value.ObservableValue;
import javafx.concurrent.Task;
import javafx.scene.Scene;
import javafx.scene.control.TableCell;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.layout.BorderPane;
import javafx.stage.Stage;
public class BackgroundLoadingTableCell extends Application {
private static final Random rng = new Random();
private static final Executor exec = Executors.newFixedThreadPool(Runtime.getRuntime().availableProcessors(), r -> {
Thread t = new Thread(r);
t.setDaemon(true);
return t ;
});
@Override
public void start(Stage primaryStage) {
TableView<Item> table = new TableView<>();
table.getColumns().add(column("Item", Item::nameProperty));
table.getColumns().add(column("Value", Item::valueProperty));
TableColumn<Item, Item> dataColumn = column("Data", item -> new ReadOnlyObjectWrapper<Item>(item));
dataColumn.setCellFactory(col -> new TableCell<Item, Item>() {
private Task<String> dataLoadTask ;
@Override
public void updateItem(Item item, boolean empty) {
super.updateItem(item, empty);
if (empty) {
setText("");
} else {
setText("Loading...");
if (dataLoadTask != null) {
dataLoadTask.cancel();
}
dataLoadTask = new Task<String>() {
@Override
public String call() {
return getData(item.getValue());
};
};
dataLoadTask.setOnSucceeded(e -> setText(dataLoadTask.getValue()));
exec.execute(dataLoadTask);
}
}
});
table.getColumns().add(dataColumn);
IntStream.rangeClosed(1, 100).mapToObj(i -> new Item("Item "+i, rng.nextInt(100))).forEach(table.getItems()::add);
primaryStage.setScene(new Scene(new BorderPane(table), 600, 600));
primaryStage.show();
}
private String getData(int value) {
// simulate long running process:
try {
Thread.sleep(250 + rng.nextInt(500));
} catch (InterruptedException exc) {
Thread.currentThread().interrupt();
}
return "Data for "+value ;
}
private <S,T> TableColumn<S,T> column(String text, Function<S, ObservableValue<T>> property) {
TableColumn<S,T> col = new TableColumn<>(text);
col.setCellValueFactory(cellData -> property.apply(cellData.getValue()));
return col ;
}
public static class Item {
private final StringProperty name = new SimpleStringProperty();
private final IntegerProperty value = new SimpleIntegerProperty();
public Item(String name, int value) {
setName(name);
setValue(value);
}
public final StringProperty nameProperty() {
return this.name;
}
public final java.lang.String getName() {
return this.nameProperty().get();
}
public final void setName(final java.lang.String name) {
this.nameProperty().set(name);
}
public final IntegerProperty valueProperty() {
return this.value;
}
public final int getValue() {
return this.valueProperty().get();
}
public final void setValue(final int value) {
this.valueProperty().set(value);
}
}
public static void main(String[] args) {
launch(args);
}
}