簡體   English   中英

JavaFX 項目未顯示

[英]JavaFX Project not showing

下面是為我正在處理的項目啟動 JavaFX GUI 的代碼。 但是,當我去執行課程時,它會卡住。 它打印的只是啟動 MCPY GUI,只是坐在那里有什么幫助嗎?

啟動器類

public class MCPY {
    public static void main(String args[]) {
        System.out.println("Starting MCPY GUI...");   
        Main.main(args);
    }
}

主要的

package com.mcpy.gui;

import java.io.IOException;

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

public class Main extends Application {

    @Override
    public void start(Stage primaryStage) throws Exception{
        FXMLLoader loader = new FXMLLoader(getClass().getResource("styles/Main.fxml"));
        Parent root;

        try {
            root = loader.load();
        } catch (IOException ioe) {
            // log exception
            return;
        }

        //init the connection to the controller class
        MainController MainController = loader.getController();
        MainController.setMain(this);

       //load the scene
       primaryStage.setTitle("Minecraft Launcher Python");
       primaryStage.setScene(new Scene(root, 800, 500));
       primaryStage.show();

    };


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

主文件


<?import java.lang.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.image.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.control.TitledPane?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.control.Button?>

<TitledPane animated="false" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" text="Minecraft Launcher Python Login Screen" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="com.mcpy.gui.MainController">
    <content>
        <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
            <children>
                <ImageView fitHeight="135.0" fitWidth="119.0" layoutX="14.0" layoutY="14.0" pickOnBounds="true" preserveRatio="true">
                    <image>
                    </image>
                </ImageView>
                <Button id="play" layoutX="231.0" layoutY="176.0" mnemonicParsing="false" onAction="#playButtonActionEvent" text="Play" />
                <Button id="login" layoutX="313.0" layoutY="176.0" mnemonicParsing="false" onAction="#loginButtonEvent" text="Login" />
                <Button id="create_account" layoutX="77.0" layoutY="176.0" mnemonicParsing="false" onAction="#create_accountButtonEvent" text="Create Account" />
            </children></AnchorPane>
    </content>
</TitledPane>

主控制器

package com.mcpy.gui;


import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.scene.control.Button;

import com.mcpy.gui.Play;
import com.mcpy.gui.Login;
import com.mcpy.gui.CreateAccount;
/* Logic for the main gui. DO NOT EDIT. */
public class MainController {

    @SuppressWarnings("unused")
    private Main main;

    public void setMain(Main main) {
        this.main = main;

    }
    @FXML
    private static Button login;

    @FXML
    private static Button create_account;

    @FXML 
    private static Button play;

    @FXML
    public void loginButtonEvent(ActionEvent lbe) {
        String[] args = (null);        
        Login.main(args);
    };

    @FXML    
    public void create_accountButtonEvent(ActionEvent cabe) {
        String[] args = (null);          
        CreateAccount.main(args);
    };

    @FXML    
    public void playButtonActionEvent(ActionEvent pbae) {       
        Play.play_mc();
    }
}

所有代碼都在這里。 啟動器 (MCPY.java) 主 gui 及其各自的控制器和樣式表(Main.java、MainController.java 和 Main.FXML)

編輯:我已經應用了@naimdjon 建議的 FXML 更改,但是在單擊按鈕時會產生此錯誤: https ://pastebin.com/8EV9wfnm

您的 xml 中有多個命名空間聲明,並且缺少導入。 將您的 fxml 更改為此(已刪除用於測試的圖像),這將顯示一個窗口:

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

<?import javafx.scene.control.TitledPane?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.control.Button?>
<TitledPane fx:controller="com.mcpy.gui.MainController" animated="false"
            maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity"
            minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0"
            text="Minecraft Launcher Python Login Screen"
            xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml">
    <content>
        <AnchorPane minHeight="0.0" minWidth="0.0" prefHeight="180.0" prefWidth="200.0">
            <children>
                <ImageView fitHeight="135.0" fitWidth="119.0" layoutX="14.0" layoutY="14.0" pickOnBounds="true" preserveRatio="true">
                    <image>
                    </image>
                </ImageView>
                <Button id="play" layoutX="231.0" layoutY="176.0" mnemonicParsing="false" text="Play" />
                <Button id="login" layoutX="313.0" layoutY="176.0" mnemonicParsing="false" text="Login" />
                <Button id="create_account" layoutX="77.0" layoutY="176.0" mnemonicParsing="false" text="Create Account" />
            </children></AnchorPane>
    </content>
</TitledPane>

更新

單擊按鈕后,您似乎正在調用launch()方法。 在 Java FX 應用程序中不能多次調用 launch() 方法。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM