cannot resolve symbol javafx.application in IntelliJ Idea IDE

rob111 picture rob111 · Nov 27, 2014 · Viewed 135.5k times · Source

I tried to create a JavaFX application in IntelliJ Idea IDE but I got compile error that said:

java: package javafx.application does not exist.

I have changed the Project SDK and the Project Language Level to Java 8, reloaded the project but it didn't help. Then I checked if JavaFX plugin was enabled in the settings.

The search on Google and StackOverflow didn't give me more ideas of what is wrong. Thank for any help in advance.

P.S. I am using IntelliJ Idea 14.0 with java8.1.0_25 on archlinux OS.

Answer

Ryan J picture Ryan J · Nov 27, 2014

As indicated here, JavaFX is no longer included in openjdk.

So check, if you have <Java SDK root>/jre/lib/ext/jfxrt.jar on your classpath under Project Structure -> SDKs -> 1.x -> Classpath? If not, that could be why. Try adding it and see if that fixes your issue, e.g. on Ubuntu, install then openjfx package with sudo apt-get install openjfx.