FXMLのテストアプリケーションが実行できません、助けてください!
エラーメッセージは下記のとおりです。
Error occurred during initialization of boot layer
java.lang.module.FindException: Module javafx.controls.jmod not found
該当のソースコード
エクリプスではエラーマークなどはなかったので問題がないように思います(コピペです)。
参考サイト:http://nobotta.dazoo.ne.jp/blog/?p=1335
Main
1package com.nobotta; 2 3import javafx.application.Application; 4import javafx.fxml.FXMLLoader; 5import javafx.scene.Scene; 6import javafx.scene.layout.BorderPane; 7import javafx.stage.Stage; 8 9 10public class Main extends Application { 11 @Override 12 public void start(Stage primaryStage) { 13 try { 14 BorderPane root = (BorderPane)FXMLLoader.load(getClass().getResource("FxTest.fxml")); 15 Scene scene = new Scene(root,400,400); 16 scene.getStylesheets().add(getClass().getResource("application.css").toExternalForm()); 17 primaryStage.setScene(scene); 18 primaryStage.show(); 19 } catch(Exception e) { 20 e.printStackTrace(); 21 } 22 } 23 24 public static void main(String[] args) { 25 launch(args); 26 } 27}
FxTestController
1package com.nobotta; 2 3import java.net.URL; 4import java.util.ResourceBundle; 5 6import javafx.application.Platform; 7import javafx.event.ActionEvent; 8import javafx.fxml.FXML; 9import javafx.fxml.Initializable; 10import javafx.scene.control.Label; 11import javafx.scene.control.TextField; 12import javafx.scene.input.MouseEvent; 13 14public class FxTestController implements Initializable{ 15 16 @FXML 17 private TextField txtName; 18 @FXML 19 private Label lblAnswer; 20 @Override 21 public void initialize(URL location, ResourceBundle resources) { 22 23 } 24 @FXML 25 private void btnOK_onClick(MouseEvent aEvent) { 26 System.out.println("btnOK_onClick"); 27 lblAnswer.setText(txtName.getText() + "さん こんにちは"); 28 } 29 @FXML 30 private void mnuClose_onClick(ActionEvent event) { 31 System.out.println("mnuClose_onClick"); 32 Platform.exit(); 33 } 34}
fxml
1<?xml version="1.0" encoding="UTF-8"?> 2 3<?import javafx.scene.control.Button?> 4<?import javafx.scene.control.Label?> 5<?import javafx.scene.control.Menu?> 6<?import javafx.scene.control.MenuBar?> 7<?import javafx.scene.control.MenuItem?> 8<?import javafx.scene.control.TextField?> 9<?import javafx.scene.layout.AnchorPane?> 10<?import javafx.scene.layout.BorderPane?> 11<?import javafx.scene.layout.ColumnConstraints?> 12<?import javafx.scene.layout.GridPane?> 13<?import javafx.scene.layout.RowConstraints?> 14 15 16<BorderPane xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="com.nobotta.FxTestController"> 17 <center> 18 <AnchorPane prefHeight="300.0" prefWidth="400.0" BorderPane.alignment="CENTER"> 19 <children> 20 <BorderPane prefHeight="300.0" prefWidth="400.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> 21 <center> 22 <GridPane BorderPane.alignment="CENTER"> 23 <columnConstraints> 24 <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> 25 <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> 26 </columnConstraints> 27 <rowConstraints> 28 <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> 29 <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> 30 <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> 31 </rowConstraints> 32 <children> 33 <Label text="名前を入力してください" /> 34 <TextField fx:id="txtName" GridPane.columnIndex="1" /> 35 <Label text="ボタンをクリックしてください" GridPane.rowIndex="1" /> 36 <Button mnemonicParsing="false" onMouseClicked="#btnOK_onClick" text="OK" GridPane.columnIndex="1" GridPane.rowIndex="1" /> 37 <Label fx:id="lblAnswer" GridPane.columnIndex="1" GridPane.rowIndex="2" /> 38 </children> 39 </GridPane> 40 </center> 41 </BorderPane> 42 </children> 43 </AnchorPane> 44 </center> 45 <top> 46 <MenuBar BorderPane.alignment="CENTER"> 47 <menus> 48 <Menu mnemonicParsing="false" text="ファイル"> 49 <items> 50 <MenuItem mnemonicParsing="false" onAction="#mnuClose_onClick" text="閉じる" /> 51 </items> 52 </Menu> 53 </menus> 54 </MenuBar> 55 </top> 56</BorderPane>
補足情報
モジュールパスにjavaFXのlibにあるjarファイル8種類とJREシステム・ライブラリーが、クラスパスにJavaFX SDKが追加されています。
VM引数は以下の通りに設定されています
--module-path=C:\Java\javafx-jmods-11.0.2 --add-modules=javafx.controls
Adopt OpenJDK-11.0.8.10-hotspot
EclipseIDE
SceneBuilder
を使用しています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。