UniJa2.1声音播放问题(MIDI格式)(3)
来源:未知 责任编辑:责任编辑 发表时间:2014-01-06 18:09 点击:次
}
public void pausePlay(){
try{
player.stop();
}catch(MediaException e){
e.printStackTrace();
}
}
public int getState(){
return player.getState();
}
public void playFile() {
player = null;
if(filename!=null){
try {
is = getClass().getResourceAsStream(filename);
player = Manager.createPlayer(is, contentType);
//p.prefetch();
player.realize();
VolumeControl vc = (VolumeControl) player.getControl("VolumeControl");
vc.setLevel(100);
player.setLoopCount(time);
player.start();
}
catch (IOException e) {
e.printStackTrace();
}
catch (javax.microedition.media.MediaException e) {
e.printStackTrace();
}
}
}
}
如有不足之处,请大家指正!谢谢
相关新闻>>
- 发表评论
-
- 最新评论 更多>>