Is jfxrt.jar
pure java? How this can be proved? May I deploy jfxrt.jar
with my application and will it work with any version of JRE
?
Won't it interfere with jfxrt.jar
in installed JRE
?
What if my app will run under Java8
where javafx
is integrated more tight?
UPDATE
I don't understand what does "not pure Java" mean? If jar loads and uses native libraries, then it is not pure by definition? Am not I right?
May be someone from Oracle would give a better answer to this question. As far as I know :
yes jfxrt.jar is pure java
, never heard of a jar not being pure java pun intendedYes
you may deploy your application with jfxrt.jarWill it run with any JRE -
NO
, because javafx is built using java and AFAIK, javafx uses minimum java 7 (not sure about the update version). So, you must atleast have JRE 7 on the system.Won't it interfere with jfxrt.jar in installed JRE -
It may, as it does for any other jar
!What if my app will run under Java8 where javafx is integrated more tight - Doesn't makes sense. I am
not able to get the question
!