I decided to uninstall the previous versions of java and leave only openjdk11.
I reconfigured everything from the environment variables to the IDE configuration path.
My problem now is that once the jar file is created, and I try to open it, it does not run.
If I try running the java program from cmd with the command "java -jar fileName.jar", I get this error:
"Error: JavaFX runtime components are missing, and are required to run this application"
The only solution I found was in this post:
https://www.b4x.com/android/forum/t...ibillity-with-previous-projects.102061/page-3
using the command:
"java --module-path javafxpath\lib --add-modules=javafx.controls -jar fileName.jar"
Is it possible that using openJDK I can no longer execute a jar file simply by double clicking on it, without necessarily having to go through the cmd?
I reconfigured everything from the environment variables to the IDE configuration path.
My problem now is that once the jar file is created, and I try to open it, it does not run.
If I try running the java program from cmd with the command "java -jar fileName.jar", I get this error:
"Error: JavaFX runtime components are missing, and are required to run this application"
The only solution I found was in this post:
https://www.b4x.com/android/forum/t...ibillity-with-previous-projects.102061/page-3
using the command:
"java --module-path javafxpath\lib --add-modules=javafx.controls -jar fileName.jar"
Is it possible that using openJDK I can no longer execute a jar file simply by double clicking on it, without necessarily having to go through the cmd?