1

我有一个从这个站点(由senderle提供)获得的非常简单的代码来播放 mp3 文件(我是新手javafx

import javafx.scene.media.*;
public class Start
{
    public static void main(String[] args)
    {
        String bip = "file:/Sounds/sound.mp3";
        Media hit = new Media(bip);
        MediaPlayer mediaPlayer = new MediaPlayer(hit); // This is line 8 from the Exception
        mediaPlayer.play();
    }
}

当我运行此代码时,出现以下异常:

Exception in thread "main" java.lang.IllegalStateException: Toolkit not initialized
    at com.sun.javafx.application.PlatformImpl.runLater(PlatformImpl.java:155)
    at com.sun.javafx.application.PlatformImpl.runLater(PlatformImpl.java:150)
    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 Start.main(Start.java:8)

我该如何解决?

4

1 回答 1

1

在以下方式之一中使用您的媒体:

  1. JavaFX应用程序
  2. 摇摆JFXPanel
  3. 一个 SWT FXCanvas

上述任何选项都将确保在您开始使用依赖它的组件之前适当地初始化 JavaFX 工具包。

于 2013-04-03T16:25:45.860 回答