The Java Developers Almanac 1.4

 
Webexampledepot.com

   
Home > List of Packages > java.applet  [8 examples] > Sound  [2 examples]

e556. Loading and Playing Audio in an Application

    try {
        URL url = new URL("http://hostname/audio.au");
        AudioClip ac = Applet.newAudioClip(url);
        ac.play();
    } catch (MalformedURLException e) {
    }

 Related Examples
e555. Loading and Playing Audio in an Applet

See also: Images   


© 2002 Addison-Wesley.