JAVA初心者です。
発生している問題・エラーメッセージ
FXMLのテストアプリケーションを作成し、実行したら問題が起こりました。
コンソールには以下のように表示されておりました。
エラー: メイン・クラスcom.nobotta.Mainを検出およびロードできませんでした
原因: java.lang.NoClassDefFoundError: javafx/application/Application
こちらのサイトのコードをコピペしています。
http://nobotta.dazoo.ne.jp/blog/?p=1335
ここ3日ほど様々なJavaFX関連記事を参考に色々試してはいるのですが、初心者で知識不足の為、解決できずにいます。
どうかご助力よろしくお願いします。
該当のソースコード
エクリプスではエラーマークなどはなかったので問題がないように思います(コピペです)。
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} 28
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} 35 36
fxml
1 2<?xml version="1.0" encoding="UTF-8"?> 3 4<?import javafx.scene.control.Button?> 5<?import javafx.scene.control.Label?> 6<?import javafx.scene.control.Menu?> 7<?import javafx.scene.control.MenuBar?> 8<?import javafx.scene.control.MenuItem?> 9<?import javafx.scene.control.TextField?> 10<?import javafx.scene.layout.AnchorPane?> 11<?import javafx.scene.layout.BorderPane?> 12<?import javafx.scene.layout.ColumnConstraints?> 13<?import javafx.scene.layout.GridPane?> 14<?import javafx.scene.layout.RowConstraints?> 15 16 17<BorderPane xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="com.nobotta.FxTestController"> 18 <center> 19 <AnchorPane prefHeight="300.0" prefWidth="400.0" BorderPane.alignment="CENTER"> 20 <children> 21 <BorderPane prefHeight="300.0" prefWidth="400.0" AnchorPane.bottomAnchor="0.0" AnchorPane.leftAnchor="0.0" AnchorPane.rightAnchor="0.0" AnchorPane.topAnchor="0.0"> 22 <center> 23 <GridPane BorderPane.alignment="CENTER"> 24 <columnConstraints> 25 <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> 26 <ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" /> 27 </columnConstraints> 28 <rowConstraints> 29 <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> 30 <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> 31 <RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" /> 32 </rowConstraints> 33 <children> 34 <Label text="名前を入力してください" /> 35 <TextField fx:id="txtName" GridPane.columnIndex="1" /> 36 <Label text="ボタンをクリックしてください" GridPane.rowIndex="1" /> 37 <Button mnemonicParsing="false" onMouseClicked="#btnOK_onClick" text="OK" GridPane.columnIndex="1" GridPane.rowIndex="1" /> 38 <Label fx:id="lblAnswer" GridPane.columnIndex="1" GridPane.rowIndex="2" /> 39 </children> 40 </GridPane> 41 </center> 42 </BorderPane> 43 </children> 44 </AnchorPane> 45 </center> 46 <top> 47 <MenuBar BorderPane.alignment="CENTER"> 48 <menus> 49 <Menu mnemonicParsing="false" text="ファイル"> 50 <items> 51 <MenuItem mnemonicParsing="false" onAction="#mnuClose_onClick" text="閉じる" /> 52 </items> 53 </Menu> 54 </menus> 55 </MenuBar> 56 </top> 57</BorderPane> 58
長くてすみません。
試したこと
Eclipseの再インストール
補足情報
モジュールパスにjavaFXのlibにあるjarファイル8種類とJREシステム・ライブラリーが、クラスパスにJavaFX SDKが追加されています。
VM引数は以下の通りに設定されています
--module-path=C:\Java\javafx-sdk-11.0.2\lib--add-module=javafx.controls
Adopt OpenJDK-11.0.8.10-hotspot
EclipseIDE
SceneBuilder
を使用しています。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/11 08:10
2020/09/11 09:07
2020/09/11 12:08
2020/09/13 13:32