java如何实现音乐播放?我是指用什么函数或者类?3
发布网友
发布时间:2023-10-09 03:23
我来回答
共1个回答
热心网友
时间:2024-11-25 13:58
这个就可以。但是wav的音乐可以播放,我估计mid应该也可以把,其他的就不能保证了。
String s="music.wav";
InputStream is =null;
AudioStream as = null ;
int time=400;
is = getClass().getResourceAsStream(s);
try {
as = new AudioStream(is);
} catch (IOException e) {}
AudioPlayer.player.start(as);
try {
Thread.sleep(time);
} catch (InterruptedException e) {}
//AudioPlayer.player.stop(as);