JMF 提供了一个MediaPlayer
可以用作全功能播放器的类。但是,我找不到播放音频文件的方法。使用的一些代码片段。
import javax.media.bean.playerbean.MediaPlayer;
// ....
MediaPlayer mp = new MediaPlayer();
mp.setMediaLocation(location of file); // <- syntax error!
mp.start();
但它不起作用。Eclipse 显示此错误:
Syntax error on token "setMediaLocation", Identifier expected after this token
..关于setMediaLocation()
方法。
有人可以告诉我如何使用MediaPlayer
类来播放音频文件吗?我的编码有什么问题?