嗨,任何人都知道如何在J2ME中自动播放mp3文件列表?如果你有...请分享代码。
答案 0 :(得分:1)
您可以使用它来播放.mp3或.wav文件
Player p;
InputStream is = getClass().getResourceAsStream(SoundName[sound]);
try {
p = Manager.createPlayer(is, "audio/X-wav");
p.start();
is.close();
is = null;
} catch (IOException ex) {
ex.printStackTrace();
} catch (MediaException ex) {
ex.printStackTrace();
}
p.setLoopCount(100);//using this you can play the sound in loop