媒体无法转换为javafx.scene.media.Media

时间:2016-11-03 15:52:41

标签: java javafx media-player

class SongPlayer{

   static void playMP3(String fileName) {
      new javafx.embed.swing.JFXPanel();
      String uriString = new File(fileName).toURI().toString();
      Media m = new Media(uriString);
      MediaPlayer mp = new MediaPlayer(m);
      mp.play();
   }

   public static void main(String args[]) throws Exception{
     playMP3("Batman.wav");
   }
}

我在

处遇到Media cannot be converted to javafx.scene.media.Media错误
MediaPlayer mp = new MediaPlayer(m);

我不知道这是什么问题。我检查了文档,但MediaPlayerMedia个对象作为参数。

0 个答案:

没有答案