java - 使用自己的 FXML 动态加载新选项卡

标签 java dynamic javafx tabs fxml

我想编写一个应用程序,它有几个选项。用户可以在菜单中选择一个选项,并创建一个选项卡,该选项卡从另一个 fxml 文件(也有另一个 View Controller )加载其 View 。目前我的代码如下所示:

Tab t = new Tab("My New Tab");
try {
    t.setClosable(true);
    t.setId("test");
    t.setContent(FXMLLoader.
      load(getClass().
        getResource("/package/NewTabView.fxml")));
} catch (Exception e) {

}

tabPane.getTabs().add(t);
selectionModel.selectLast();

希望你能帮助我,因为我遇到以下异常:

Exception in thread "JavaFX Application Thread" java.lang.RuntimeException: java.lang.reflect.InvocationTargetException

最佳答案

就像 @DVarga 所说,您需要检查 NewTabView.fxml 文件的位置。

这是一个可以帮助您的示例:

  • 这里有两个 FXML 文件及其 Controller 类
  • firstView FXML 文件是包含 TabPane
  • secondView FXML 文件包含我们将在第一个 TabPane 中的新 Tab 内动态加载的内容
  • MainApp 类中没有什么特别的,我们只是加载第一个 View 并设置其 Controller
  • 有趣的是 createTabDynamically() 方法,我们加载了 secondView 的 FXML 文件并设置其 Controller ,然后实例化一个新选项卡并设置SecondView 作为其内容,我们最终将其添加到 TabPane 中。

FirstView.fxml

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

<?import javafx.geometry.*?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>

<BorderPane fx:id="container" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
   <top>
      <MenuBar BorderPane.alignment="CENTER">
        <menus>
          <Menu mnemonicParsing="false" text="File">
            <items>
              <MenuItem fx:id="closeMI" mnemonicParsing="false" text="Close" />
            </items>
          </Menu>
          <Menu mnemonicParsing="false" text="Action">
            <items>
              <MenuItem fx:id="openTabMI" mnemonicParsing="false" text="Open the new tab" />
            </items>
          </Menu>
        </menus>
      </MenuBar>
   </top>
   <center>
      <TabPane fx:id="tabPane" prefHeight="200.0" prefWidth="200.0" tabClosingPolicy="ALL_TABS">
        <tabs>
          <Tab fx:id="myTab" closable="false" text="MyTab">
               <content>
                  <VBox>
                     <padding>
                        <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
                     </padding>
                     <children>
                        <Label text="Hello From the first view" />
                     </children>
                  </VBox>
               </content>
            </Tab>
        </tabs>
      </TabPane>
   </center>
</BorderPane>

SecondView.FXML

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

<?import javafx.geometry.*?>
<?import javafx.scene.text.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<?import javafx.scene.layout.AnchorPane?>

<VBox fx:id="container" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1">
   <children>
      <Label fx:id="secondInfoLbl" text="This is the second view">
         <font>
            <Font size="14.0" />
         </font>
      </Label>
   </children>
   <padding>
      <Insets bottom="20.0" left="20.0" right="20.0" top="20.0" />
   </padding>
</VBox>

FirstViewController.java

import java.io.IOException;
import java.net.URL;
import java.util.ResourceBundle;

import javafx.application.Platform;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Parent;
import javafx.scene.control.Label;
import javafx.scene.control.MenuItem;
import javafx.scene.control.Tab;
import javafx.scene.control.TabPane;
import javafx.scene.layout.VBox;

public class FirstViewController implements Initializable {

    @FXML private MenuItem openTabMI, closeMI;
    @FXML private TabPane tabPane;
    private Tab myDynamicTab;

    @Override
    public void initialize(URL location, ResourceBundle resources) {

        openTabMI.setOnAction((event)->{
            createTabDynamically();
        });

        closeMI.setOnAction((event)->{Platform.exit();});
    }

    private void createTabDynamically() {
        FXMLLoader loader = new FXMLLoader();
        loader.setLocation(getClass().getResource("secondView.fxml"));
        loader.setController(new SecondViewController());
        try {
            Parent parent = loader.load();
            myDynamicTab = new Tab("A Dynamic Tab");
            myDynamicTab.setClosable(true);
            myDynamicTab.setContent(parent);
            tabPane.getTabs().add(myDynamicTab);
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

SecondViewController.java

import java.net.URL;
import java.util.ResourceBundle;

import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Label;

public class SecondViewController implements Initializable {

    @FXML private Label secondInfoLbl;

    @Override
    public void initialize(URL url, ResourceBundle rb) {
        secondInfoLbl.setText("Hello from the second view");
    }
}

MainApp.java

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

public class MainApp extends Application {

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

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

        FXMLLoader loader = new FXMLLoader();
        loader.setLocation(getClass().getResource("FirstView.fxml"));
        FirstViewController firstViewController = new FirstViewController();
        loader.setController(firstViewController);
        Parent parent = loader.load();
        Scene scene = new Scene(parent);
        primaryStage.setScene(scene);
        primaryStage.show();

    }

}

关于java - 使用自己的 FXML 动态加载新选项卡,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37439213/

相关文章:

java - 如何搜索存储在 hashmap 中的匹配对?

flash - 动态地从我的 flash 库中获取一个类

c++ - 循环中的动态内存分配 - C++

php - navbar-brand 中的 Laravel 动态页面标题

java - 在 javafx 中创建自动完成搜索表单

java - 警告 : Loading FXML document with JavaFX API of version 9 by JavaFX runtime of version 8. 0.131

java - appium中的连接重置(WebDriver异常)

Java 绘制图像方法

java - Mockito 执行 anyInt() ,不包括零

java - 如何在带有注释的 Spring 中按名称 Autowiring ?