How to play wav file without using getResourceAsStream
Hi, i'm using j2me mmapi to create an audio player. I need to read the audio files from the root folder instead of /res folder.
Originally, i read from /res folder and its fine..but now i need to read it from a different folder. Is there a way?
original codes:
InputStream is = getClass().getResourceAsStream(file);
..
player = Manager.createPlayer(is, ctype);
thanks

