Package java.applet

Examples of java.applet.AudioClip.play()


    sp.play(url);
  }

  public void play1(URL url){
    AudioClip clip = Applet.newAudioClip(url);
    clip.play();
  }

  @Override
  public void play(URL url)  {
View Full Code Here


      //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();
View Full Code Here

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.