J2ME Mp3播放器 - 循环播放mp3文件

时间:2010-12-09 12:48:14

标签: java-me j2mepolish

嗨,任何人都知道如何在J2ME中自动播放mp3文件列表?如果你有...请分享代码。

1 个答案:

答案 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