3

当我单击按钮时,我创建了一个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下载的音频文件有问题,因此无法播放音频文件。@_@

4

3 回答 3

4

利用

SwingUtilities.invokeLater(new Runnable() {
    @Override
    public void run() {
        playSound();
    }
});
于 2012-05-13T09:19:10.530 回答
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();
    }
});
于 2012-05-13T09:22:56.550 回答
2

任何堆栈跟踪,好吗???您是否将侦听器添加到按钮???

无论如何,针对跨平台的标准方式存在一些错误。在http://www.oracle.com/technetwork/java/javase/tech/index-jsp-140239.html使用 Java 媒体框架。

于 2012-05-13T09:12:28.350 回答