/* PlaySound.java */

import java.net.*;
import java.applet.*;

public class PlaySound
{
  public static void main(String[] args)
  {
    if (args.length >= 1) {
      try {
        URL url = new URL(args[0]);
        AudioClip clip = Applet.newAudioClip(url);
        clip.play();
        try {
          Thread.sleep(10000);
        } catch (InterruptedException e) {
        }
        System.exit(0);
      } catch (MalformedURLException e) {
        System.out.println(e.toString());
      }
    }
  }
}