実現したいこと
javaFX11を使ったアプリを作っています。
.fxmlファイルのURLをgetClass().getResource();
で取得できるようにしたいです。
発生している問題・分からないこと
FXMLLoaderにfxmlファイルのURLを渡したいため、getClass().getResource();
の引数に、.fxmlのパスを入力したところ、URLの値がnullになってしまいました。
エラーメッセージ
error
1Class pass: file:/C:/Users/ryu20/git/ScheduleTable/app/build/classes/java/main/calendar/ImageEditController.class 2FXML pass: null
該当のソースコード
java
1System.out.println("Class pass: " + getClass().getResource("/calendar/ImageEditController.class")); 2System.out.println("FXML pass: " + getClass().getResource("/calendar/CalendarIndividual.fxml")); 3 4
特になし
試したこと・調べたこと
- teratailやGoogle等で検索した
- ソースコードを自分なりに変更した
- 知人に聞いた
- その他
上記の詳細・結果
このfxmlファイルと同じパッケージ内にある.classファイルのパスを入れると問題なくURLを取得できていたので、何が原因かがよくわかりません。
また、fxmlファイルの中身を全て消しても同様にnullが返されたので、ファイルの中身とは無関係なように思います。
現在はGradleでビルドしているのですが、Gradleでビルドしないで実行した際にはうまく実行されました。
補足
以下、build.gradleの中身です。
build.gradle
1/* 2 * This file was generated by the Gradle 'init' task. 3 * 4 * This generated file contains a sample Java application project to get you started. 5 * For more details on building Java & JVM projects, please refer to https://docs.gradle.org/8.10.2/userguide/building_java_projects.html in the Gradle documentation. 6 */ 7 8plugins { 9 id 'java' 10 id 'application' 11 id "org.openjfx.javafxplugin" version "0.1.0" 12} 13 14repositories { 15 // Use Maven Central for resolving dependencies. 16 mavenCentral() 17} 18 19dependencies { 20 // Use JUnit Jupiter for testing. 21 testImplementation libs.junit.jupiter 22 23 testRuntimeOnly 'org.junit.platform:junit-platform-launcher' 24 25 // This dependency is used by the application. 26 implementation libs.guava 27 28 29 implementation 'org.openjfx:javafx-base:23' 30 implementation 'org.openjfx:javafx-graphics:23' 31 implementation 'org.openjfx:javafx-fxml:23' 32 implementation 'org.openjfx:javafx-controls:23' 33 // SQLite の JDBC ドライバー (例: Xerial SQLiteJDBC) 34 implementation 'org.xerial:sqlite-jdbc:3.36.0.1' 35 36} 37 38// Apply a specific Java toolchain to ease working on different environments. 39java { 40 toolchain { 41 languageVersion = JavaLanguageVersion.of(21) 42 } 43} 44 45application { 46 // Define the main class for the application. 47 mainClass = 'application.CalendarMain' 48} 49 50tasks.named('test') { 51 // Use JUnit Platform for unit tests. 52 useJUnitPlatform() 53} 54 55javafx{ 56 modules = ['javafx.base','javafx.controls','javafx.graphics','javafx.fxml'] // 使用するJavaFXモジュール 57} 58
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。