Package lec10.glab.playsounds

Source Code of lec10.glab.playsounds.PlayClip

package lec10.glab.playsounds;
import java.applet.Applet;
import java.applet.AudioClip;
import java.net.MalformedURLException;
import java.net.URL;

public class PlayClip {

public static void main(String args[]) {
    try {

      //you need an au file to do it.
      URL url = new URL(
      "file://" +   System.getProperty("user.dir") +   "/src/edu/uchicago/cs/java/lec10/playsounds/snds/samisen.au");
      AudioClip clip = Applet.newAudioClip(url);

      clip.play();

      Thread.sleep(5000);
   
    } catch (InterruptedException e) {
      e.printStackTrace();
    } catch (MalformedURLException e) {
      e.printStackTrace();
    }
  }
}
TOP

Related Classes of lec10.glab.playsounds.PlayClip

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.