I followed the "Getting Started with JavaFX" instructions:
I loaded down hellofx.java from GitHub, put it to D:\java
I've set the Path_To_FX. The command javac --module-path "%PATH_TO_FX%" --add-modules javafx.controls HelloFX.java
(with "" around Path_To_FX) works and I get HelloFX.class
The next step fails:
D:\java>java --module-path "%PATH_TO_FX%" --add-modules javafx.controls HelloFX
Error: Could not find or load main class HelloFX
Caused by: java.lang.ClassNotFoundException: HelloFX
All running on Windows 10. Any suggestions?
I followed the "Getting Started with JavaFX" instructions:
I loaded down hellofx.java from GitHub, put it to D:\java
I've set the Path_To_FX. The command
javac --module-path "%PATH_TO_FX%" --add-modules javafx.controls HelloFX.java(with "" around Path_To_FX) works and I get HelloFX.class
The next step fails:
All running on Windows 10. Any suggestions?