Free Trial

Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.


Share this Page URL
Help

39 Applets I > 39.4 Animation in Applets - Pg. 936

Kapitel 39 Listing 39.8: Soundausgabe aus einer Applikation (Forts.) Applets I 005 006 public class PlaySound 007 { 008 public static void main(String[] args) 009 { 010 if (args.length >= 1) { 011 try { 012 URL url = new URL(args[0]); 013 AudioClip clip = Applet.newAudioClip(url); 014 clip.play(); 015 try { 016 Thread.sleep(10000); 017 } catch (InterruptedException e) { 018 } 019 System.exit(0); 020 } catch (MalformedURLException e) { 021 System.out.println(e.toString()); 022 } 023 } 024 } 025 } Das Programm kann beispielsweise dazu verwendet werden, einige der Standard-Sound -Dateien unter Windows abzuspielen: