Javafx / F XML: конфликт между методом initialize () и F XML Загрузчик: Initialize: NullPointerException, F XML .LoadException - PullRequest
1 голос
/ 12 января 2020

как гласит заголовок, существует определенный конфликт между методом инициализации, который создает таблицу и добавляет весь контент в таблицу, и FXMLLoader, который должен загружать F XML для всплывающего окна.

Мой код:

Основной:

import javafx.fxml.FXMLLoader;
import javafx.application.Application;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.stage.Stage;


public class Main extends Application {

    private TableView<Artikel> table;

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

    @Override
    public void start(Stage stage) throws Exception {
    stage.setTitle("Table View Sample");
    stage.setWidth(1250);
    stage.setHeight(1000);

    Parent root = FXMLLoader.load(getClass().getResource("fxml1.fxml"));

    Scene scene1 = new Scene(root,300,300);


    stage.setScene(scene1);
    stage.show();

}

F XML 1.

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.event.ActionEvent?>
<?import javafx.geometry.Pos?>
<?import javafx.collections.FXCollections ?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.layout.StackPane?>

<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="150.0" prefWidth="200.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" 
fx:controller="Controller" stylesheets="stylesheet.css" spacing="4" fx:id="idScene" >

<TableView fx:id="idTable" >

</TableView>

 <HBox alignment="TOP_RIGHT">
        <Button fx:id="idNew" text ="Neu" onAction="#onNew"/>

</HBox>



</VBox>

Контроллер.

import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;
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.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.TableView;
import javafx.scene.control.TableColumn;
import javafx.scene.control.cell.PropertyValueFactory;
import javafx.stage.Modality;
import javafx.stage.Stage;



public class Controller implements Initializable  {

    @FXML
    private Button idNew;
    @FXML
    private TableView idTable;


    public void onNew(ActionEvent event) throws IOException {
        Parent popUpFenster = FXMLLoader.load(getClass().getResource("fxml2.fxml"));
        Scene scene2 = new Scene(popUpFenster,500,500);

        Stage stage = new Stage();
        stage.setScene(scene2);

        stage.initModality(Modality.APPLICATION_MODAL);

        stage.showAndWait();
    }

    @Override
    public void initialize(URL url, ResourceBundle rb) {
        TableColumn place = new TableColumn("Platz");
        TableColumn name = new TableColumn("Name");
        TableColumn weight = new TableColumn("Gewicht");
        TableColumn price = new TableColumn("Preis");
        TableColumn amount = new TableColumn("Anzahl");




        idTable.getColumns().addAll(place,name,weight,price,amount);

        final ObservableList<Artikel> data = FXCollections.observableArrayList(
                new Artikel(1,"Hallo Welt",4,5,3),
                new Artikel(1,"Hallo Welt",5,3,4),
                new Artikel(2,"Hallo Welt",4,3,1));                


        //Step : 3#  Associate data with columns  
            place.setCellValueFactory(new PropertyValueFactory<Artikel,Integer>("Platz"));

            name.setCellValueFactory(new PropertyValueFactory<Artikel,String>("Name"));

            weight.setCellValueFactory(new PropertyValueFactory<Artikel,Integer>("Gewicht"));

            price.setCellValueFactory(new PropertyValueFactory<Artikel,Integer>("Preis"));

            amount.setCellValueFactory(new PropertyValueFactory<Artikel,Integer>("Anzahl"));





        //Step 4: add data inside table
            idTable.setItems(data);


    }
    public class Artikel {

        private int Platz;
        private String Name;
        private int Gewicht;
        private int Preis;
        private int Anzahl;


        public Artikel() {
            this.Platz = 0;
            this.Name = "Hallo Welt";
            this.Gewicht= 0;
            this.Preis = 0;
            this.Anzahl = 0;
        }

        public Artikel(int Platz, String Name, int Gewicht, int Preis,int Anzahl) {
            this.Platz = Platz;
            this.Name = Name;
            this.Gewicht = Gewicht;
            this.Preis = Preis;
            this.Anzahl = Anzahl;
        }


        public int getPlatz() {return this.Platz;};
        public String getName () {return this.Name;}
        public int getGewicht() {return this.Gewicht;};
        public int getPreis() {return this.Preis;}
        public int getAnzahl() { return this.Anzahl;}
    }

}

fxml2:

<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.VBox?>
<?import javafx.event.ActionEvent?>
<?import javafx.geometry.Pos?>
<?import javafx.collections.FXCollections ?>
<?import javafx.geometry.Insets?>

<VBox maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="290.0" prefWidth="400.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" 
fx:controller="Controller" stylesheets="stylesheet.css" fx:id="idPopUp">

<HBox alignment="CENTER">
    <Label text="Platz"/>
    <TextField fx:id="idPlace" />
</HBox>


</VBox>

Проблема: Если вы удаляете инициализацию или комментируете ее - Neu- Кнопка -PopUp - работает, если нет - таблица отображается, но кнопка не появляется, кажется, есть конфликт

1 Ответ

0 голосов
/ 13 января 2020

В fxml2.fxml у вас есть: fx:controller="Controller"

Назначенный контроллер вызывает fxml2.fxml по: Parent popUpFenster = FXMLLoader.load(getClass().getResource("fxml2.fxml"));

То есть fxml2 вызывает Controller, а затем Controller вызывает fxml2 .......

...