I'm doing a simple app for a nokia 6131 and i need to play some audio files, but i can't.
The player method is the following one:
I get: java.microedition.media.Mediaexception: device errorCode:private void playMedia() throws Exception { try{ InputStream is = getClass().getResourceAsStream("audio.wav"); player = Manager.createPlayer(is, "audio/x-wav"); player.realize(); player.setLoopCount(1); player.start(); } catch(Exception e){ System.out.println(e.toString()); } }
does anyone have any idea??
Thanks

Reply With Quote

