Difference between revisions of "JavaFX"

From BITPlan Wiki
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 3: Line 3:
 
see [https://stackoverflow.com/questions/56166267/how-do-i-get-java-fx-running-with-openjdk-8-on-ubuntu-18-04-2-lts/56166582?noredirect=1#comment106269698_56166582 stackoverflow]
 
see [https://stackoverflow.com/questions/56166267/how-do-i-get-java-fx-running-with-openjdk-8-on-ubuntu-18-04-2-lts/56166582?noredirect=1#comment106269698_56166582 stackoverflow]
 
= How do I get Java FX running with OpenJDK 8 on MacOS? =
 
= How do I get Java FX running with OpenJDK 8 on MacOS? =
 +
* https://stackoverflow.com/questions/63842928/openjdk8-and-javafx-on-macos
 
* https://stackoverflow.com/questions/67106521/how-to-use-jfx-openfx-with-openjdk-8
 
* https://stackoverflow.com/questions/67106521/how-to-use-jfx-openfx-with-openjdk-8
 +
<source lang='bash'>
 +
find /usr/share/openjfx/lib -name "*.jar"
 +
/usr/share/openjfx/lib/javafx.media.jar
 +
/usr/share/openjfx/lib/javafx.graphics.jar
 +
/usr/share/openjfx/lib/javafx.fxml.jar
 +
/usr/share/openjfx/lib/javafx.swing.jar
 +
/usr/share/openjfx/lib/javafx.base.jar
 +
/usr/share/openjfx/lib/javafx.controls.jar
 +
/usr/share/openjfx/lib/javafx.web.jar
 +
</source>

Latest revision as of 14:45, 4 September 2024

see https://en.wikipedia.org/wiki/JavaFX

How do I get Java FX running with OpenJDK 8 on Ubuntu 18.04.2 LTS?

see stackoverflow

How do I get Java FX running with OpenJDK 8 on MacOS?

find /usr/share/openjfx/lib -name "*.jar"
/usr/share/openjfx/lib/javafx.media.jar
/usr/share/openjfx/lib/javafx.graphics.jar
/usr/share/openjfx/lib/javafx.fxml.jar
/usr/share/openjfx/lib/javafx.swing.jar
/usr/share/openjfx/lib/javafx.base.jar
/usr/share/openjfx/lib/javafx.controls.jar
/usr/share/openjfx/lib/javafx.web.jar