Hey I'm trying to implement some sounds in my Java Program. Within Eclipse it works pretty nice, but when I've build it I get the
java.lang.NoClassDefFoundError: sun/audio/AudioStream error.
Following is the code:
try {
InputStream music = new FileInputStream(file);
AudioStream audioStream = new AudioStream(music);
AudioPlayer.player.start(audioStream);
}catch(Exception e) {
Log.append(e.getMessage());
e.printStackTrace();
}
Anyone knows what the problem is or how i can fix this?