vote up 8 vote down star
1

I want to be able to play sound files in my program. Where should I look?

flag

4 Answers

vote up 5 vote down check

A simple example:

import  sun.audio.*;    //import the sun.audio package
import  java.io.*;

//** add this into your application code as appropriate
// Open an input stream  to the audio file.
InputStream in = new FileInputStream(Filename);

// Create an AudioStream object from the input stream.
AudioStream as = new AudioStream(in);         

// Use the static class member "player" from class AudioPlayer to play
// clip.
AudioPlayer.player.start(as);            

// Similarly, to stop the audio.
AudioPlayer.player.stop(as);
link|flag
Wow Greg.. I was gonna answer my own question and I finally did your answer was first.. :P Thank you.. ;) – pek Feb 23 at 20:26
1  
java.sun.com/products/jdk/… There are public API alternatives to using sun.audio. – McDowell Apr 23 at 13:44
vote up 0 vote down

Hi thanks for your help but when I run the code I get null. Could you please help more?

link|flag
vote up 2 vote down

http://java.sun.com/docs/books/tutorial/sound/ is worth being the starting point

link|flag
vote up 2 vote down

I personally made this code that works fine. I think it only works with .wav format.

  public static synchronized void playSound(final String url) {
    new Thread(new Runnable() {
      public void run() {
        try {
          Clip clip = AudioSystem.getClip();
          AudioInputStream inputStream = AudioSystem.getAudioInputStream(Main.class.getResourceAsStream("/path/to/sounds/" + url));
          clip.open(inputStream);
          clip.start(); 
        } catch (Exception e) {
          System.err.println(e.getMessage());
        }
      }
    }).start();
  }
link|flag
To avoid Clip being shut down at random time, a LineListener is required. Have a look: stackoverflow.com/questions/577724/… – gsmd Feb 23 at 15:40
+1 for a solution that uses the public API. Isn't creating a new thread unnecessary(redundant) though? – Jataro Jul 29 at 9:09
Thanx.. Is it redundant? I made it into a new thread so I can play the sound again before the first clip ends. – pek Jul 29 at 19:04
I know clip.start() spawns a new thread, so I'm pretty sure it is unnecessary. – Jataro Jul 29 at 20:20

Your Answer

Get an OpenID
or

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