27b import java.applet.*; import java.io.*; class SoundClip { public static void play(String fileName) { File f = new File(fileName); AudioClip theSound; try { theSound = Applet.newAudioClip(f.toURL()); } catch (java.net.MalformedURLException e) { theSound = null; } if (theSound != null) theSound.play(); } public static void main(String [] args) { /* for (int i = 0; i < args.length; i++) { play(args[i]); try { Thread.sleep(1000); } catch (Exception e) {} } */ play(args[0]); try { Thread.sleep(3600000); } catch (Exception e) {} } } . 0