在我的 j2me 应用程序中,每次用户单击一个项目时,我都必须播放一个小声音文件。但问题是当我多次播放声音文件时,比如在 10-14 次之后,它给了我内存不足的异常。虽然我每次播放文件时都会释放播放器,但它仍然会出现内存不足异常:这是代码片段,
public void playSound(String soundFile) {
try{
if (player!=null) {
try {
player.deallocate(); //deallocate the unnecessary memory.
} catch (Exception ex) {
player=null;
System.gc();
}
}
player = Manager.createPlayer(getClass().getResourceAsStream(musicFolder + soundFile), "audio/mpeg");
// player = Manager.createPlayer(is, "audio/mpeg");
player.realize();
// get volume control for player and set volume to max
VolumeControl vc = (VolumeControl) player.getControl("VolumeControl");
if (vc != null) {
vc.setLevel(100);
}
player.prefetch();
player.start();
isException=false;
} catch (Exception e) {
isException=true;
}
}
有人可以告诉我出了什么问题吗?