java如何实现音乐播放?我是指用什么函数或者类?
问题如题:我现在在做一个闹钟程序,不能实现声音播放。在网上查了一些方法,但是不知所以。是用application,不是applet...
问题如题:我现在在做一个闹钟程序,不能实现声音播放。在网上查了一些方法,但是不知所以。
是用application,不是applet 展开
是用application,不是applet 展开
1个回答
展开全部
这个就可以。但是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);
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);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询