gpt4 book ai didi

java - javafx 空指针的initialize()方法

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

当我尝试显示数据库信息时,我遇到了一些问题,为什么编译器会抛出 NullPointerException

这是我的 Controller ,其中我的代码包含 initialize() 方法:

    package main;
import java.net.URL;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.ResourceBundle;

import javax.swing.JComponent;
import javax.swing.JOptionPane;

import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.ChoiceBox;
import javafx.scene.control.RadioButton;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.control.TextArea;
import javafx.scene.control.TextField;
import javafx.scene.control.ToggleGroup;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.stage.Stage;

public class MainWindowController implements Initializable
{

public TextField itemType;
public TextField itemColor;
public TextField busNum;
public TextArea txtArea;

public static TableView<Details> tableView;
public static TableColumn<Details, String> itemTypeCol;
public static TableColumn<Details, String> itemColorCol;
public static TableColumn<Details, String> description;

public static ObservableList<Details> data;

@Override
public void initialize(URL location, ResourceBundle resources)
{
try
{
Connection conn = CreatingDerbyDJB.dbConnection();
data = FXCollections.observableArrayList();

ResultSet rs = conn.createStatement().executeQuery("select * from Items");
while(rs.next())
{
data.add(new Details(rs.getString(1), rs.getString(2), rs.getString(3), rs.getString(4)));
}
}catch(SQLException ex)
{
System.err.println("Error" + ex);
}
itemTypeCol.setCellValueFactory(new PropertyValueFactory<Details, String>("ItemType"));
itemColorCol.setCellValueFactory(new PropertyValueFactory<Details, String>("ItemColor"));

description.setCellValueFactory(new PropertyValueFactory<Details, String>("Description"));

tableView.setItems(data);
}
}

这是我的详细信息类,其中包含数据库的详细信息:包主;

import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;

public class Details
{
private final StringProperty itemType;
private final StringProperty itemColor;
private final StringProperty description;
private final StringProperty busNum;

public Details(String itemType, String busNum, String itemColor,String description)
{
this.itemType = new SimpleStringProperty(itemType);
this.itemColor = new SimpleStringProperty(itemColor);
this.busNum = new SimpleStringProperty(busNum);
this.description = new SimpleStringProperty(description);

}

public String getItemType()
{
return itemType.get();
}

public void setItemType(String paramItemType)
{
itemType.set(paramItemType);
}

public String getColor()
{
return itemColor.get();
}

public void setColor(String paramColor)
{
itemColor.set(paramColor);
}


public String getDescription()
{
return description.get();
}

public void setDiscription(String paramDescription)
{
description.set(paramDescription);
}

public String getBus()
{
return busNum.get();
}
public void setBus(String paramBus)
{
busNum.set(paramBus);
}


}

我试图显示数据库的每一列,除了程序中的总线编号,但它仍然需要由用户输入。

最佳答案

问题出在 initialize(...) 方法的这些行上:

itemTypeCol.setCellValueFactory(new PropertyValueFactory<Details, String>("ItemType"));
itemColorCol.setCellValueFactory(new PropertyValueFactory<Details, String>("ItemColor"));

description.setCellValueFactory(new PropertyValueFactory<Details, String>("Description"));

tableView.setItems(data);

所有这四个变量都未初始化,因此null。您不能对 null 对象调用 setter 方法,但需要首先初始化对象。您可以使用 new 关键字来初始化它们,但正如 @jewelsea 善意指出的那样,这对于 FX 应用程序来说并不是一个很好的做法。

最好使用@FXML注解基于FXML配置注入(inject)依赖项。为此,您还应该从变量中删除 static 关键字。

您的 FXML 文件中应该包含类似以下内容:

<TableView fx:id="tableView">
<columns>
<TableColumn text="ItemType" fx:id="itemTypeCol" />
<TableColumn text="ItemColor" fx:id="itemColorCol" />
<TableColumn text="Description" fx:id="description" />
</columns>
</TableView>

然后您可以在 Controller 中执行此操作:

@FXML // fx:id="tableView"
public TableView<Details> tableView;
@FXML // fx:id="itemTypeCol"
public TableColumn<Details, String> itemTypeCol;
@FXML // fx:id="itemColorCol"
public TableColumn<Details, String> itemColorCol;
@FXML // fx:id="description"
public TableColumn<Details, String> description;

这样,JavaFX 框架将实例化您在标记中描述的所有上述组件,然后将这些组件注入(inject)到您的 Controller 中。

关于java - javafx 空指针的initialize()方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40902407/

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