You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
853 B
30 lines
853 B
package sig.utils;
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
import javax.sound.sampled.AudioInputStream;
|
|
import javax.sound.sampled.AudioSystem;
|
|
import javax.sound.sampled.Clip;
|
|
import javax.sound.sampled.LineUnavailableException;
|
|
import javax.sound.sampled.UnsupportedAudioFileException;
|
|
|
|
public class SoundUtils {
|
|
public static void playSound(String filename) {
|
|
AudioInputStream audioInputStream;
|
|
try {
|
|
audioInputStream = AudioSystem.getAudioInputStream(new File(filename).getAbsoluteFile());
|
|
Clip clip;
|
|
try {
|
|
clip = AudioSystem.getClip();
|
|
clip.open(audioInputStream);
|
|
clip.start();
|
|
} catch (LineUnavailableException e) {
|
|
e.printStackTrace();
|
|
}
|
|
} catch (UnsupportedAudioFileException e) {
|
|
e.printStackTrace();
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|
|
|