Java - Playing a Sound file from the Internet

165 Views Asked by At

For my assignment I have to playing a honking sound when a button is pressed. My professor doesn't want us to play the sound off of a local drive but from some website ex. "http://soundbible.com/grab.php?id=1696&type=wav" He supplied us with some code but I can't seem to get it to work. First is the method that is invoked when the button is pressed and the second is the class that is supposed to play the sound.

public void Honk(){
JavaSound player = new JavaSound();
player.playFile("http://soundbible.com/grab.php?id=1696&type=wav");   
}

class JavaSound {
public void playFile(String file) {
try {
URL soundToPlay = getClass().getResource(file);
AudioClip player = Applet.newAudioClip(soundToPlay);
player.play();
} catch (Exception e) {}
}

What could be going wrong here?

0

There are 0 best solutions below