JavaFX TableView整数不显示

时间:2015-07-27 13:57:20

标签: java javafx tableview

我在JavaFX中遇到了桌面视图问题。

出于某种原因,我的TableView没有显示一个整数的库存列,我已经运行了一些测试&它的原因是因为getInventory函数没有被执行。

  

Java代码

//Main Class
public class Main extends Application{
Stage window;
Scene scene1,scene2;
VBox panel;
TableView<Resources> table; 

public static void main(String[] args){
    launch(args);
}

@Override
public void start(Stage stage) throws Exception {

    //Stage
    window = stage;     
    window.setTitle("Test Application - TableView");

    //TableColumns
    TableColumn<Resources, String> name_c = new TableColumn<Resources, String>("Resource Name");    
    name_c.setMinWidth(200);
    name_c.setCellValueFactory( new PropertyValueFactory<>("Name"));
    //---------------------------------------------

    TableColumn<Resources, Double> price_c = new TableColumn<Resources, Double>("Resource Price");  
    price_c.setMinWidth(125);
    price_c.setCellValueFactory( new PropertyValueFactory<>("Price"));
    //---------------------------------------------

    TableColumn<Resources, Integer> inventory_c = new TableColumn<Resources, Integer>("Resource Inventory");    
    inventory_c.setMinWidth(125);
    inventory_c.setCellValueFactory( new PropertyValueFactory<Resources, Integer>("Inventory"));

    //TableView
    table = new TableView<>();
    table.getColumns().addAll(name_c, price_c, inventory_c);
    table.setItems(getResources());

    //VBox
    panel = new VBox();
    panel.getChildren().add(table);

    // Scene
    Scene scene = new Scene(panel,500,250);
    window.setScene(scene);
    window.show();
}

public ObservableList<Resources> getResources(){
    //Inserts into the TableView the Values
    ObservableList<Resources> res = FXCollections.observableArrayList();
    res.add( new Resources("Wood", 9.99, 100));
    res.add( new Resources("Iron", 12.85, 70));
    res.add( new Resources("Cotton", 3.16, 200));
    res.add( new Resources("Marble", 20.75, 50));
    res.add( new Resources("Glass", 5.99, 175));

    return res;
}
}

//Resources Class
public class Resources {

private String name;
private double price;
private int inventory;

//Constructors
public Resources(){
    this.name = "";
    this.price = 0;
    this.inventory = 0;
}

public Resources(String n,double p,int i){
    this.name = n;
    this.price = p;
    this.inventory = i;
}

//Getters & Setters.
public String getName() {
    return name;
}

public void setName(String nm) {
    this.name = nm;
}

public double getPrice() {
    return price;
}

public void setPrice(double pr) {
    this.price = pr;
}

public int getInvetory() {
    System.out.println(inventory);//Inventory Test (Data not displaying, works with the other get functions)
    return inventory;
}

public void setInvetory(int inv) {
    this.inventory = inv;
}

}

1 个答案:

答案 0 :(得分:3)

可能是因为您使用getInvetory()方法而不是getInventory()

来自PropertyValueFactory的文档:

  

如果不存在与此模式匹配的方法,则尝试在上面的示例中调用get<property>()is<property>()(即getFirstName()或isFirstName())会有直接支持。 / p>

并且,您没有getInventory()inventoryProperty()的匹配模式。