Clip.LOOP_CONTINUOUSLY : Clip « javax.sound.sampled « Java by API






Clip.LOOP_CONTINUOUSLY

  



import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.DataLine;

public class Main {
  public static void main(String[] argv) throws Exception {
    DataLine.Info info = null;
    Clip clip = (Clip) AudioSystem.getLine(info);
    clip.start();

    clip.loop(Clip.LOOP_CONTINUOUSLY);

    int numberOfPlays = 3;
    clip.loop(numberOfPlays - 1);
  }
}

   
    
  








Related examples in the same category

1.Clip: loop(int count)
2.Clip: open(AudioInputStream stream)