Метка в javafx не меняется - PullRequest
1 голос
/ 07 марта 2020

Это код для контроллера

package Views;

import java.io.File;
import java.io.IOException;
import java.net.URL;
import java.text.SimpleDateFormat;
import java.time.LocalDate;
import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;
import java.util.ResourceBundle;

import javax.imageio.ImageIO;

import javafx.embed.swing.SwingFXUtils;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.image.Image;

public class menuController {

    @FXML
    private Label eNameLabel;
    @FXML
    private Button productListButton;
    @FXML
    private Button employeeListButton;
    @FXML
    private Button ingredientListButton;
    @FXML
    private Button addProductButton;
    @FXML
    private Button addIngreidentButton;
    @FXML
    private Button addEmployeeButton;
    @FXML
    private Button LogOutButton;
    @FXML
    private Label clockLabel;



    public void initialize(URL arg0, ResourceBundle arg1) {
        clock();
    }

    public void clock(){
        Calendar cal = new GregorianCalendar();
    //  int day= cal.get(Calendar.DAY_OF_MONTH);
    //  int month = cal.get(Calendar.MONTH);
    //  int year = cal.get(Calendar.YEAR);

        Date currentDate = new Date();
        SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy");

    //  int second = cal.get(Calendar.SECOND);
    //  int minute = cal.get(Calendar.MINUTE);
    //  int hour = cal.get(Calendar.HOUR);

        this.clockLabel.setText(dateFormat.format(currentDate));
    }
}

Моя метка не изменяется при запуске моей программы. Я проверил, что идентификатор метки задан в построителе сцен, и все связано с его контроллером или переменной.

Это файл f xml, который подключен к контроллеру.

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.text.Font?>

<AnchorPane prefHeight="764.0" prefWidth="901.0" xmlns="http://javafx.com/javafx/11.0.1" xmlns:fx="http://javafx.com/fxml/1" fx:controller="Views.menuController">
   <children>
      <AnchorPane layoutY="2.0" prefHeight="764.0" prefWidth="951.0">
         <children>
            <HBox prefHeight="100.0" prefWidth="746.0" spacing="20.0">
               <children>
                  <Label lineSpacing="10.0" text="Welcom!">
                     <font>
                        <Font size="55.0" />
                     </font>
                  </Label>
                  <Label fx:id="eNameLabel" lineSpacing="10.0" prefHeight="81.0" prefWidth="244.0" text="Label">
                     <font>
                        <Font size="55.0" />
                     </font>
                  </Label>
               </children>
            </HBox>
            <Button fx:id="LogOutButton" layoutX="768.0" layoutY="704.0" mnemonicParsing="false" onAction="#logOutButtonPushed" prefHeight="46.0" prefWidth="176.0" text="Log Out" />
            <Button fx:id="employeeListButton" layoutX="74.0" layoutY="301.0" mnemonicParsing="false" prefHeight="81.0" prefWidth="215.0" text="Employee List" />
            <Button fx:id="productListButton" layoutX="368.0" layoutY="301.0" mnemonicParsing="false" prefHeight="81.0" prefWidth="215.0" text="Products List" />
            <Button fx:id="ingredientListButton" layoutX="661.0" layoutY="301.0" mnemonicParsing="false" prefHeight="81.0" prefWidth="215.0" text="Ingredients List" />
            <Label fx:id="clockLabel" layoutX="74.0" layoutY="710.0" text="Clock" />
            <Button fx:id="addEmployeeButton" layoutX="74.0" layoutY="439.0" mnemonicParsing="false" prefHeight="81.0" prefWidth="215.0" text="Add Employee" />
            <Button fx:id="addProductButton" layoutX="368.0" layoutY="439.0" mnemonicParsing="false" prefHeight="81.0" prefWidth="215.0" text="Add Products" />
            <Button fx:id="addIngreidentButton" layoutX="661.0" layoutY="439.0" mnemonicParsing="false" prefHeight="81.0" prefWidth="215.0" text="Add Ingredients" />
         </children>
      </AnchorPane>
   </children>
</AnchorPane>

Когда я запускаю программу, clockLabel остается «часами» и не изменяется. Это также не дает мне никакой ошибки. Когда я ставлю часы (); в конструкторе, который я сделал позже, он дал мне ошибку nullPointerException в this.clockLabel.setText (dateFormat.format (currentDate));

Я пытался избавиться от этого в this.clockLabel.setText (dateFormat.format (текущая дата)); но это тоже не сработало.

Ответы [ 2 ]

3 голосов
/ 07 марта 2020

Метод initialize, принимающий параметры, рассматривается только в том случае, если он переопределяет метод из Initializable. В вашем случае класс контроллера не реализует Initializable, поэтому FXMLLoader ищет только метод initialize(). Либо удалите параметры метода, либо добавьте implements Initializable к классу.

Что касается конструктора, приводящего к NPE: внедрение полей происходит после завершения конструктора в жизненном цикле контроллера:

  1. FXMLLoader.load введено
  2. При анализе f xml загрузчик обнаруживает атрибут fx:controller и использует отражение для создания экземпляра контроллера.
  3. поля вводятся на основе их fx:id s
  4. Возвращает FXMLLoader.load.
0 голосов
/ 07 марта 2020

В дополнение к ответу Фабиана - вы также можете использовать аннотацию @ F XML, чтобы убедиться, что используется правильный метод:

@FXML
private void initialize() {
    ...
}
...