JavaFX: "Toolkit" not initialized when trying to play an mp3 file through MediaPlayer class

Dimitris Sfounis picture Dimitris Sfounis · Dec 24, 2012 · Viewed 30.9k times · Source

I'm trying to make a simple mp3 play in the background of my program using the following:

Media med = new Media(getClass().getResource("intro.mp3").toExternalForm());
MediaPlayer mPlayer = new MediaPlayer(med);
mPlayer.play();

The intro.mp3 file is placed in the bin folder of my package, along with the other .class files.

The problem is that my program terminates with:

Exception in thread "main" java.lang.IllegalStateException: Toolkit not initialized

Full termination log is:

Device "Intel(R) HD Graphics Family" (\\.\DISPLAY1) initialization failed : 
WARNING: bad driver version detected, device disabled. Please update your driver to at least version 8.15.10.2302

Exception in thread "main" java.lang.IllegalStateException: Toolkit not initialized
    at com.sun.javafx.application.PlatformImpl.runLater(PlatformImpl.java:153)
    at com.sun.javafx.application.PlatformImpl.runLater(PlatformImpl.java:148)
    at javafx.application.Platform.runLater(Platform.java:52)
    at javafx.scene.media.MediaPlayer.init(MediaPlayer.java:450)
    at javafx.scene.media.MediaPlayer.<init>(MediaPlayer.java:365)
    at PokerApp.<init>(PokerApp.java:33)
    at PokerApp.main(PokerApp.java:105)

Anybody have any ideas as per the cause of the problem?

Answer

Sergey Grinev picture Sergey Grinev · Dec 24, 2012

JavaFX performs "hidden" initialization on start. Running MediaPlayer doesn't trigger initialization.

The easiest ways to trigger it are:

  • have Application.launch() executed
  • have Application based program being run from jar packaged by fx ant tasks (e.g. built from Netbeans JavaFX project)
  • have JFXPanel started
  • call Platform.startup(Runnable) (Java 9+)