Possible Duplicate:
How can I play sound in Java?
I have looked for many, many days for this!
My question is what is the best way to play a .wav sound file? Source would be VERY helpful! I dont need any fancy mixing or whatever. Just a play and maybe a stop function. Note- This is an application, not an applet.
The thing that worked best for me is the Clip way, because of the small code size and understandability. However, every time I use clip.open(), a error occurs.
IllegalStateException: Mixer is already open
and the relevant code-
String stringFile = "example.wav";
File soundFile = new File(stringFile);
AudioInputStream inputStream = AudioSystem.getAudioInputStream(soundFile);
AudioFormat format = inputStream.getFormat();
DataLine.Info info = new DataLine.Info(Clip.class, format);
clip = (Clip) AudioSystem.getLine(info);
clip.open(inputStream);
clip.start();
And another related question- Im pretty new to using multiple classes, so would it be possible to- Have another class for playing sound, and in the constructor of that class pass in the file name. Then could you play the sound file inside the constructor method?
Clipand then they use it wrong. The thread should have been deleted, rather than protected. For a quick example of playing a sound, see the JavaSound info. page. – Andrew Thompson Aug 18 '11 at 18:56