I am trying to play a .wav file with java. I need it when a button is pressed to play a short beep sound. I have google it but most of the code wasn't working. Can someone give me a simple code to play a .wav file.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Finally I managed to do the following and it works fine
|
||||
|
|
|
Shortest form (without having to install random libraries) ?
The only problem is there is no good way to make this method blocking to close and dispose the data after *.wav finishes.
|
||||
|
|
|
here is the most elegant form i could come up without using sun.*:
|
|||
|
|
|
The snippet here works fine, tested with windows sound:
|
|||
|
|
Have a look at the open source project jlGui at http://www.javazoom.net/jlgui/jlgui.html which has a BasicPlayer that supports "MP3, OGG Vorbis, FLAC, MONKEY's AUDIO, WAV, AIFF, AU and SPEEX audio formats". |
|||
|
|

