I've looked on Google for a while, searching how to play audio files, and most of the sources I found were with using java.applet.*, but I am trying to look for a way I can put it inside my actionPerformed() method.

public void actionPerformed(ActionEvent event) {
    if(event.getActionCommand().equals("Play")){
        //Short Audio File Playing Here
    }
}
link|improve this question

75% accept rate
please search first on stackoverflow regarding this... you will get many links... try them implementing and then ask if you have any difficulties... – Fahim Parkar Jan 25 at 3:14
also the applet code will come inside actioncommand method... – Fahim Parkar Jan 25 at 3:15
feedback

2 Answers

up vote 3 down vote accepted

See the JavaSound info. page for the "Playing a Clip" section.

link|improve this answer
Thanks for the reference! Looking over it now. – Amundeep Singh Jan 25 at 3:31
I've looked over the source you've given, and works great first time! But when I want to press another button, it doesn't play. I think it's because the clip may be already open. I've tried clip.close(), then clip.open() right after, but for some reason still doesn't work? Any suggestions? – Amundeep Singh Jan 25 at 4:56
1) Ask a new question. 2) Post an SSCCE. Hot-link to sounds (like the example on the JavaSound page). There are some more samples available from my site. – Andrew Thompson Jan 25 at 5:40
feedback

You may learn and use javax.sound API. Have a look at tutorial - Playing Back Audio.

link|improve this answer
Great reference, I'll look over it! – Amundeep Singh Jan 25 at 3:30
The issue may just be about needing to reset the position back to the start of the Clip. The above tutorial covers this. Managing the instance you create may be a little tricky given the implied multithreading, though. Clips don't multithread AFAIK. – Phil Freihofner Feb 7 at 23:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.