Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Finding javafx jar file for windows

Tags:

java

jar

javafx

Does anyone know where I can find the jar file for the javafx package for windows? I can only find zip files and exe files. Can someone answer with a link to download the package?

like image 769
i . Avatar asked Dec 15 '22 12:12

i .


2 Answers

JavaFX comes together with the latest JDK/ JRE from Oracle.

like image 154
Puce Avatar answered Dec 18 '22 00:12

Puce


You need to first install the javafx_sdk-2_0_1-windows-i586.exe That will install JavaFx 2 sdk on your machine at by defualt C drive. You can get jfxrt.jar at following location C:\Program Files\Oracle\JavaFX Runtime 2.0\lib\jfxrt.jar

you have to refer this in classpath of your project.

like image 23
vaishali33 Avatar answered Dec 18 '22 02:12

vaishali33