当我点击按钮时,我创建了一个class
来播放声音。
以下是代码:
public void playSound()
{
try
{
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File("beep-1.wav"));
Clip clip = AudioSystem.getClip( );
clip.open(audioInputStream);
clip.start( );
}
catch(Exception e)
{
System.out.println("Error with playing sound.");
}
}
当我想将它实现到ButtonListener
方法时,似乎没有播放声音。
此处为ButtonListener
代码:
private class ButtonListener implements ActionListener
{
public void actionPerformed(ActionEvent e)
{
if (replayButton == e.getSource())
{
playSound();
}
}
}
代码出了什么问题?
编辑:
基本上我正在尝试创建一个简单的记忆游戏,我想在点击时为按钮添加声音。
求助:
似乎我从Soundjay下载的音频文件出现问题,因此无法播放音频文件。 @ _ @
答案 0 :(得分:4)
使用
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
playSound();
}
});
答案 1 :(得分:3)
这应该有效:
public class Test extends JFrame {
public static void main(String[] args) {
new Test();
}
public Test() {
JButton button = new JButton("play");
button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
playSound();
}});
this.getContentPane().add(button);
this.setVisible(true);
}
public void playSound() {
try {
AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File("beep.wav"));
Clip clip = AudioSystem.getClip( );
clip.open(audioInputStream);
clip.start( );
}
catch(Exception e) {
e.printStackTrace( );
}
}
}
请注意,在播放文件期间,GUI将不负责任。在你的监听器中使用Joop Eggen的方法来纠正这个问题。它会异步播放文件。
SwingUtilities.invokeLater(new Runnable() {
public void run() {
playSound();
}
});
答案 2 :(得分:2)
任何堆栈跟踪,请???你有没有把监听器添加到按钮???
无论如何,当针对跨平台时,标准方式会有一些错误。在http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html使用Java Media Framework。