我想播放应用程序中的音频。使用以下代码
try{
Player p = javax.microedition.media.Manager.createPlayer("file:///store/home/user/recording.amr");
p.realize();
VolumeControl volume = (VolumeControl) p.getControl("VolumeControl");
volume.setLevel(30);
p.prefetch();
p.start();
}catch(MediaException me)
{
Dialog.alert(me.toString());
}
catch(IOException ioe)
{
Dialog.alert(ioe.toString());
}
然后我得到一个异常net.rim.device.internal.media.rimmediaexception:初始化时媒体未释放
对这个异常(exception)有任何想法吗?
最佳答案
阅读rim文章:ojita
请引用堆栈溢出链接http://docs.blackberry.com/en/developers/deliverables/11941/BlackBerry_Java_Application-Development_Guide--741609-1109114520-001-5.0_Beta-US.pdf