I am trying to play a sound in Java. So far it is going well, thank you, but I have a problem understanding how does this work.

I wrote a function that does the playback:

    private static void PlaySound(String path) {
        try {
            final File SoundFile = new File(path);
            AudioInputStream Sound = AudioSystem.getAudioInputStream(SoundFile);

            DataLine.Info info = new DataLine.Info(Clip.class, Sound.getFormat());
            Clip clip = (Clip) AudioSystem.getLine(info);
            clip.open(Sound);

            clip.addLineListener(new LineListener() {
                public void update (LineEvent event) {
                    if (event.getType() == LineEvent.Type.STOP) {
                        event.getLine().close();
                        System.out.printf("Playback ended!");
                        System.exit(0);
                    }
                }
            });
            System.out.printf("This sound is %f seconds long.", (clip.getMicrosecondLength() / 1000.0d));
            clip.start();
        } catch (Exception e) {
            ErrorHandler(e);
        }
    }

Now this function works almost fine: when the sound has ended, it calls the event.getLine().close(); function, but it is stuck in an "infinite loop" (not sure if it is) and nothing after that statement gets executed, and the program runs until I kill it manually.

If I change the line

if (event.getType() == LineEvent.Type.STOP) {

to

if (event.getType() == LineEvent.Type.CLOSE) {

then the sound plays, and the program exits correctly, but still none of the statement after the event.getLine().close(); are executed.

The question is: is this the intended behavior of event.getLine().close(), or I am doing something wrong?


Solution:

The LineListener is actually based on an outdated fact, that Java Sound has a bug in it, and we need to exit explicitly from the vm. Without the listener, the code just works fine.

link|improve this question

40% accept rate
feedback

1 Answer

See if it's raising an exception:

public void update (LineEvent event) {
  if (event.getType().equals(LineEvent.Type.STOP)) {
    try { 
      event.getLine().close();
    } catch (Throwable t) {
      t.printStackTrace();
    }
    System.out.printf("Playback ended!");
  }
}
link|improve this answer
No exception raised from the event.getLine().close(). By the way, if there was an unhandled exception the code would actually exit with error (-: – estol Nov 25 '11 at 18:28
1  
@estol An unhandled exception would only cause the program to terminate with an error if it is in the main thread. I wanted to see if there was a ThreadDeath being raised because close() is killing an event-delivery thread. – erickson Nov 25 '11 at 19:09
the program at this point consist of a single thread: the function above, and a main function calling the PlaySound() function with the /home/estol/sounds/testfiles/2sec.wav parameter passed. This is just an experiment to see how this works. – estol Nov 25 '11 at 20:01
@estol Using the sound packages will create additional background threads. That's why the program sometimes doesn't terminate when your main does. One of the reasons to call close() is to stop these threads. – erickson Nov 25 '11 at 20:38
sure it creates some threads, I am not entirely sure about the working mechanism of this object, but if I call close, why does it hang instead of terminate? – estol Nov 25 '11 at 22:03
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.