我似乎无法找到填充表格的方法:(如果我分别看着它们,我会在我的控制台上播种,即使我将一个手动对象添加到我的observebleList它也可以工作,它只是不要t添加我的数据输入....
This is my Controller:
package Interface;
import java.net.URL;
import java.util.ArrayList;
import java.util.ResourceBundle;
import javafx.application.Platform;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.scene.control.cell.TextFieldTableCell;
public class ControllerForFinalPoint implements Initializable {
String id ;
String x ;
String y ;
String z ;
public void exitApplication(ActionEvent exitApplication) {
Platform.exit();
}
public void intoarcere (String id, String x, String y, String z) {
this.id = id;
System.out.println(id);
this.x = x;
System.out.println(x);
this.y = y;
System.out.println(y);
this.z = z;
System.out.println(z);
}
@FXML
private TableView<MyPointFinal> tableCoord2;
@FXML
private TableColumn<MyPointFinal, String> Id;
@FXML
private TableColumn<MyPointFinal, String> X;
@FXML
private TableColumn<MyPointFinal, String> Y;
@FXML
private TableColumn<MyPointFinal, String> Z;
ObservableList<MyPointFinal> data = FXCollections.observableArrayList(
new MyPointFinal(id, x, y, z));
@Override
public void initialize(URL location, ResourceBundle resources) {
Id.setCellValueFactory(new PropertyValueFactory<MyPointFinal, String>("Id"));
Id.setCellFactory(TextFieldTableCell.forTableColumn());
X.setCellValueFactory(new PropertyValueFactory<MyPointFinal, String>("X"));
X.setCellFactory(TextFieldTableCell.forTableColumn());
Y.setCellValueFactory(new PropertyValueFactory<MyPointFinal, String>("Y"));
Y.setCellFactory(TextFieldTableCell.forTableColumn());
Z.setCellValueFactory(new PropertyValueFactory<MyPointFinal, String>("Z"));
Z.setCellFactory(TextFieldTableCell.forTableColumn());
tableCoord2.setItems(data);
}
}
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.TableColumn?>
<?import javafx.scene.control.TableView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="500.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/8.0.60" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Interface.ControllerForFinalPoint">
<children>
<TableView fx:id="tableCoord2" editable="true" prefHeight="558.0" prefWidth="600.0">
<columns>
<TableColumn fx:id="Id" prefWidth="75.0" text="Name" />
<TableColumn fx:id="X" prefWidth="150.0" text="X" />
<TableColumn fx:id="Y" prefWidth="150.0" text="Y" />
<TableColumn fx:id="Z" prefWidth="150.0" text="Z" />
</columns>
</TableView>
<AnchorPane prefHeight="59.0" prefWidth="700.0">
<children>
<Button layoutX="118.0" layoutY="34.0" mnemonicParsing="false" text="Save" AnchorPane.bottomAnchor="17.0" AnchorPane.leftAnchor="325.0" AnchorPane.rightAnchor="325.0" AnchorPane.topAnchor="17.0" />
</children>
</AnchorPane>
<AnchorPane prefHeight="38.0" prefWidth="600.0" />
</children>
</VBox>
答案 0 :(得分:0)
我认为问题在于方法不是按照你想的顺序调用的。首先,javafx会创建实例,因此会使用变量&#39; id&#39;,&#39; x&#39;,&#39; y&#39;,&#39;来初始化字段initialize()
。 ž&#39 ;.之后,javafx将调用使用上述ObservableList的intoarcere()
方法。之后,您可以调用intoarcere()
来设置之前用于构建ObservableList内容的字段....(哎呀)。
因此实际的MyPointFinal实例就在那里(在您记录其内容时已经确认),但是没有任何内容可见,因为每个值都是&#39; null&#39;。
如果您将public void intoarcere (String id, String x, String y, String z)
{
this.data.add(new MyPointFinal(id, x, y, z));
}
更改为以下内容,则会看到结果。
{{1}}
聚苯乙烯。目前你使用大写和小写的变量名称&#39; x&#39;,&#39; y&#39;和&#39; z&#39;。不仅仅是PascalCased&#39;对于一般命名约定的变量名称,它也会让人感到困惑(对于其他人来说,但也会在一段时间后为你自己)。请尝试重新命名它们。