我在使用ObservableList中获取的数据填充JavaFX中的表视图时遇到了困难。
当在PatientInfoController中按下btnConfirm()时,它会使用来自PatientInfoController视图的屏幕文本数据创建一个Patient对象。
然后将该对象添加到Queue类中的LinkedList队列。 然后返回队列并将其传递给QueueTabPageController方法displayQueue()
我知道当我将增强的for循环打印到控制台时,患者对象会获得所需的信息......
for (Patient patient : queue) {
System.out.println(patient.getFirstName());
System.out.println(patient.getLastName());
System.out.println(patient.getPostCode());
System.out.println(patient.getTriage());
tableData.add(patient);
System.out.println(tableData);
}
但是tableView不会在单元格中显示数据。
(我已经设法从数据库中获取另一个填充搜索结果的tableview,但我对这个问题感到难过)
非常感谢任何指导。 感谢。
package controllers;
import java.io.IOException;
import java.net.URL;
import java.util.List;
import java.util.ResourceBundle;
import app.Patient;
import app.Queue;
import app.Status;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.Node;
import javafx.scene.control.Label;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.stage.Stage;
public class PatientInfoController implements Initializable {
@FXML
private TableView<Patient> personTable;
@FXML
private TableColumn<Patient, String> firstNameColumn;
@FXML
private TableColumn<Patient, String> lastNameColumn;
@FXML
private Label nhsNumberLabel;
@FXML
private Label titleLabel;
@FXML
private Label firstNameLabel;
@FXML
private Label lastNameLabel;
@FXML
private Label streetNumberLabel;
@FXML
private Label streetNameLabel;
@FXML
private Label cityLabel;
@FXML
private Label postCodeLabel;
@Override
public void initialize(URL arg0, ResourceBundle arg1) {
assert personTable != null : "fx:id=\"tableView\" was not injected: check your FXML file 'PatientInfoPage.fxml'";
}
/**
* Button to send user back to receptionist homepage
*
* @param event
* @throws IOException
*/
@FXML
private void btnCancel(ActionEvent event) throws IOException {
Stage stage = (Stage) ((Node) (event.getSource())).getScene().getWindow();
stage.close();
}
public static List<Patient> queue;
public static QueueTabPageController queueTabPageController;
/**
* Button to confirm patient and send them to triage/waiting queue
*
* @param event
*/
@FXML
private void btnConfirm(ActionEvent event) {
Stage stage = (Stage) ((Node) (event.getSource())).getScene().getWindow();
// patientservicesclass psc = new patientservicesclass
// test.enqueue("test");
// psc.getPatientById(nhsNumberLabel.getText())
Patient p = new Patient(firstNameLabel.getText(), lastNameLabel.getText(), nhsNumberLabel.getText(),
titleLabel.getText(), streetNumberLabel.getText(), streetNameLabel.getText(), cityLabel.getText(),
postCodeLabel.getText(), Status.EMERGENCY);
queueTabPageController = new QueueTabPageController();
queue = Queue.addToQueue(p);
queueTabPageController.displayQueue(queue);
stage.close();
}
/**
* sets relevant labels to patient information from the database these
* labels are set before screen is changed --- see btnPatientInfo on the
* ReceptionistHomePageController for more info ---
*
* @param patient
*/
public void setPatientInfo(Patient patient) {
nhsNumberLabel.setText(patient.getNhsNumber());
titleLabel.setText(patient.getTitle());
firstNameLabel.setText(patient.getFirstName());
lastNameLabel.setText(patient.getLastName());
streetNumberLabel.setText(patient.getStreetNumber());
streetNameLabel.setText(patient.getStreetName());
cityLabel.setText(patient.getCity());
postCodeLabel.setText(patient.getPostCode());
}
}
package app;
import java.util.LinkedList;
import java.util.List;
public class Queue implements Comparable<Patient> {
/**
* linked list of patient objects to represent queue
*/
public static List<Patient> queue = new LinkedList<Patient>();
/**
* method to add a patient to the queue
*
* @param p
*/
public static List<Patient> addToQueue(Patient p) {
// check to see if queue is full
if (queue.size() < 10) {
// add patient if there is room in queue
queue.add(p);
} else {
// queue may be full
System.out.println("Queue is full");
// alert on call team and hospital manager
}
return queue;
//test.displayQueue(queue);
}
/**
* method to remove a patient from the queue
*
* @param p
*/
public static void removefromQueue(Patient p) {
// remove patient from queue
queue.remove(p);
}
/**
* overriden method to allow comparison by triage status
*/
@Override
public int compareTo(Patient o) {
return 0;
}
}
package controllers;
import java.net.URL;
import java.util.List;
import java.util.ResourceBundle;
import app.Patient;
import javafx.application.Platform;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.cell.PropertyValueFactory;
public class QueueTabPageController implements Initializable {
@FXML
private TableView<Patient> tableView = new TableView<Patient>();
@FXML
private TableColumn<Patient, String> firstNameColumn;
@FXML
private TableColumn<Patient, String> lastNameColumn;
@FXML
private TableColumn<Patient, String> postCodeColumn;
private ObservableList<Patient> tableData;
@Override
public void initialize(URL arg0, ResourceBundle arg1) {
assert tableView != null : "fx:id=\"tableView\" was not injected: check your FXML file 'FXMLQueueTabPage.fxml'";
firstNameColumn.setCellValueFactory(new PropertyValueFactory<Patient, String>("firstName"));
lastNameColumn.setCellValueFactory(new PropertyValueFactory<Patient, String>("lastName"));
postCodeColumn.setCellValueFactory(new PropertyValueFactory<Patient, String>("postCode"));
}
public void displayQueue(List<Patient> queue) {
tableData = FXCollections.observableArrayList();
System.out.println("Starting display queue method in qtc + value of firstNameColumn = " + firstNameColumn);
for (Patient patient : queue) {
System.out.println(patient.getFirstName());
System.out.println(patient.getLastName());
System.out.println(patient.getPostCode());
System.out.println(patient.getTriage());
// tableData.addAll(queue);
tableData.add(patient);
System.out.println(tableData);
}
tableView.setItems(tableData);
refreshTable();
}
void refreshTable() {
final List<Patient> items = tableView.getItems();
if( items == null || items.size() == 0) return;
final Patient item = tableView.getItems().get(0);
items.remove(0);
Platform.runLater(new Runnable(){
@Override
public void run() {
items.add(0, item);
}
});
}
}
。
<?import javafx.scene.shape.*?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<AnchorPane prefHeight="770.0" prefWidth="1000.0" stylesheets="@../styles/QueueTabPage.css" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="controllers.QueueTabPageController">
<children>
<Rectangle arcHeight="5.0" arcWidth="5.0" fill="#517da6" height="156.0" stroke="BLACK" strokeType="INSIDE" styleClass="rectangle-pane" width="1065.0" />
<Label layoutX="349.0" layoutY="62.0" styleClass="label-queueTitle" stylesheets="@../styles/QueueTabPage.css" text="Accident & Emergency Queue">
<font>
<Font size="30.0" />
</font>
</Label>
<TableView fx:id="tableView" layoutX="242.0" layoutY="276.0" prefHeight="384.0" prefWidth="718.0">
<columns>
<TableColumn fx:id="firstNameColumn" prefWidth="122.0" text="First name" />
<TableColumn fx:id="lastNameColumn" prefWidth="144.0" text="Last name" />
<TableColumn fx:id="postCodeColumn" prefWidth="158.0" text="Time waiting" />
</columns>
</TableView>
</children>
</AnchorPane>
答案 0 :(得分:0)
基本上会发生的事情是TableView
会被填充并被绘制,但由于这一行:private TableView<Patient> tableView = new TableView<Patient>();
另一个空的TableView
被涂在上面。如果你改变了
@FXML
private TableView<Patient> tableView = new TableView<Patient>();
到
@FXML
private TableView<Patient> tableView;
您应该会看到已填充的tableView
。