我有一个TableView,其中的一列应该是布尔值的复选框(javafx16,java11),但出于某种原因,复选框拒绝实际绑定到对象的字段。尝试使用专门为布尔列设计的forTableColumn静态方法已经失败了,我尝试扩展CheckBoxTableColumn并在其内部进行绑定,但没有任何效果(尽管我不需要仅为基本绑定这样做)。
在FXML的控制器中,我正在调用asc列。setCellFactory(CheckBoxTableCell.forTableColumn(ascColumn))
,其中我的列为
<TableColumn fx:id="ascColumn" text="Asc" prefWidth="$SHORT_CELL_WIDTH">
<cellValueFactory>
<PropertyValueFactory property="ascension"/>
</cellValueFactory>
</TableColumn>
当然,它是有效的,因为复选框出现了,但是检查和取消检查实际上并没有到达源对象。没有其他列需要该字段是可观察值,所有其他列都可以自己处理它,所以我正在寻找一种解决方案,使源值只是一个常规布尔值。我还尝试将selectedStateCallback设置为返回布尔属性,然后向其添加了监听器,但监听器从未被调用。
最终,我想要实现的是,只有当行的对象满足某些条件时,复选框才会出现,为此,我创建了一个扩展CheckBoxTableCell的新类,但是,由于我无法首先使默认的复选框工作,因此我也无法使其工作,因此我需要首先解决这个问题。
编辑:因为我想这还不足以说明问题,这里有一个示例。
控制器:
public class Controller {
@FXML
private TableColumn<TestObject, Boolean> checkColumn;
@FXML
private TableView<TestObject> table;
public void initialize() {
List<TestObject> items = new ArrayList<>();
items.add(new TestObject("test1", false));
items.add(new TestObject("test2", false));
items.add(new TestObject("test3", true));
table.setItems(FXCollections.observableArrayList(items));
checkColumn.setCellFactory(CheckBoxTableCell.forTableColumn(checkColumn));
}
}
FXML:
<?import javafx.scene.control.cell.PropertyValueFactory?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.GridPane?>
<GridPane fx:controller="Controller"
xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
<TableView fx:id="table" editable="true">
<columns>
<TableColumn text="Name">
<cellValueFactory>
<PropertyValueFactory property="name"/>
</cellValueFactory>
</TableColumn>
<TableColumn text="Check" fx:id="checkColumn">
<cellValueFactory>
<PropertyValueFactory property="check"/>
</cellValueFactory>
</TableColumn>
</columns>
</TableView>
</GridPane>
主要类别:
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();
}
@Override
public void stop() throws Exception {
super.stop();
}
public static void main(String[] args) {
launch(args);
}
}
建筑格拉德尔:
plugins {
id 'java'
id 'application'
id 'org.openjfx.javafxplugin' version '0.0.9'
}
group 'org.example'
version '1.0-SNAPSHOT'
mainClassName = 'Main'
repositories {
mavenCentral()
}
test {
useJUnitPlatform()
}
javafx {
version = "16"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
正如我所说的,其他一切都可以工作,而不需要依赖已经是属性的输入值,并且forTableColsta方法的文档从字面上说,该列必须是布尔值(不可观察),所以除非我严重误解了什么,否则它应该可以工作
[...] 所以我在寻找一个解决方案,让源值只是一个普通的布尔值。[...]
那么就我所知,你不能使用CheckBoxTableCell.forTable()
。您可以使用这样的CheckBox
定义自己的自定义表单元格:
package org.example;
import javafx.application.Application;
import javafx.beans.property.SimpleObjectProperty;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import java.util.stream.IntStream;
public class App extends Application {
@Override
public void start(Stage stage) {
// Create table and column:
TableView<Item> table = new TableView<>();
TableColumn<Item, Item> // Do not use <Item, Boolean> here!
checkBoxCol = new TableColumn<>("checkBoxCol");
table.getColumns().add(checkBoxCol);
// Some styling:
table.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
checkBoxCol.setStyle("-fx-alignment: center;");
// Set cell value with the use of SimpleObjectProperty:
checkBoxCol.setCellValueFactory(cellData -> new SimpleObjectProperty<>(cellData.getValue()));
// Create custom cell with the check box control:
checkBoxCol.setCellFactory(tc -> new TableCell<>() {
@Override
protected void updateItem(Item item, boolean empty) {
super.updateItem(item, empty);
if (item == null || empty) {
setGraphic(null);
} else {
CheckBox checkBox = new CheckBox();
// Set starting value:
checkBox.setSelected(item.isSelected());
// Add listener!!!:
checkBox.selectedProperty().addListener((observable, oldValue, newValue) ->
item.setSelected(newValue));
setGraphic(checkBox);
}
}
});
// Print items to see if the selected value gets updated:
Button printBtn = new Button("Print Items");
printBtn.setOnAction(event -> {
System.out.println("---");
table.getItems().forEach(System.out::println);
});
// Add test data:
IntStream.range(0, 3).forEach(i -> table.getItems().add(new Item()));
// Prepare and show stage:
stage.setScene(new Scene(new VBox(table, printBtn), 100, 200));
stage.show();
}
/**
* Simple class with just one "regular boolean" property.
*/
public class Item {
private boolean selected = false;
@Override
public String toString() {
return Item.class.getSimpleName()
+ "[selected=" + selected + "]";
}
// Getters & Setters:
public boolean isSelected() {
return selected;
}
public void setSelected(boolean selected) {
this.selected = selected;
}
}
public static void main(String[] args) {
launch();
}
}
最终,我想要实现的是,只有当行的对象满足某些条件时,复选框才会出现[...]
然后,您可以在updateItem()
方法中添加一个if条件,例如:
[...]
if (item == null || empty) {
setGraphic(null);
} else {
if (showCheckBox) {
CheckBox checkBox = new CheckBox();
[...]
setGraphic(checkBox);
} else
setGraphic(null);
}
[...]
但我认为最好使用可观察的属性。如果不想接触原始类,可以创建一个包装器类。
AH00558:Apache2:无法使用192.168.80.3可靠地确定服务器的完全限定域名。全局设置“ServerName”指令以禁止显示此消息站点(13)权限被拒绝:AH00072:MAKE_SOCK:无法绑定到地址0.0.0.0:80站点没有可用的侦听套接字,正在关闭站点AH00015:无法打开日志 DockerFile:
我有一些线程的问题。 我的剧本 1-从文本文件将1000多万行加载到数组中 2-创建5个固定线程的执行池 3-然后它正在迭代该列表并将一些线程添加到队列中 现在活动线程永远不会绕过5个固定线程,这很好,但我发现我的处理器进入100%负载,我已经调试了一点,我看到正在调用构造函数,女巫意味着无论我声明5个固定线程,仍将尝试创建10万个对象。 主要问题是:我如何防止这种情况?我只是想让线程在没有空间的
我写了一个简单的RMI应用程序。我发现客户端在获得RMI-Registry后可以成功执行Registry.unbind()方法。在我看来,这是一种安全风险。为什么允许客户端在远程注册表中取消绑定名称?一个邪恶的人可以通过修改代码来做到这一点,而我的所有其他客户端都无法连接到我的服务器,因为绑定已被删除。 是否有可能在Java策略中否认这一点?
问题内容: 我正在尝试使用DockerCompose使用远程存储库部署ConfigServrService和客户端。 docker-compose.yml类似于: 在他们部署的那一刻,客户端控制台显示: cccConfigServicePropertySourceLocator:从位于http:// localhost:8888的 服务器中获取配置 (而不是http:// config-serve
不管我使用什么端口或主机,Net.CreateConnection似乎总是拒绝连接。我想是有什么东西阻碍了它的打开,但我不知道是什么原因造成的。 代码: 输出:
问题内容: 我正在尝试从go调用git日志,并将输出重定向到给定的文件。 失败于 直接在bash中执行命令没有问题。 问题答案: Go的行为类似于C 和启动新程序的过程。这 并不是 隐式调用Shell,从安全性的角度来看,这是一件非常好的事情。不必要的外壳程序调用通常会导致命令注入漏洞。 如果您 想要 外壳程序可以添加的功能(此处为重定向和复合命令语法),但又想避免安全风险,请从代码中将数据带外传