现在我正在尝试使用另一个带有 mp3 编解码器的声音文件。但是我在启动播放器时遇到了问题。
我已经从http://www.mediacollege.com/audio/tone/download/下载了文件
Netbeans 的输出是:
运行:错误:无法实现com.sun.media.amovie.AMController@ebf3f0 BUILD SUCCESSFUL(总时间:2秒)
我的程序是:
import javax.media.*;
import java.io.*;
public class MP3Player {
public static void main(String[] args) throws Exception
{
File file = new File("c:/player/sound.mp3");
MediaLocator mrl = new MediaLocator(file.toURL());
Player player = Manager.createPlayer(mrl);
player.start();
Thread.sleep(1000);
}
}