0

我正在尝试将 play 方法放在我的Audioapp班级中ActionListener,我尝试将其放入但出现错误。

我已阅读 javadocActionListener但找不到

这是我的音频:

public class Audioapp extends JApplet // find out how to implement play method into action listener?
{
    public class Sound // Holds one audio file
    {
        private AudioClip song; // Sound player
        private URL songPath; // Sound path
        Sound(String filename)
        {
            try
            {
                songPath = new URL(getCodeBase(),"G:\\Uni\\Programming\\Rolling assignements\\Week0\\Programming week21");  // This is the place were im getting error
                song = Applet.newAudioClip(songPath); // Load the Sound
            }
            catch(Exception e){e.printStackTrace();} 
        }
        public void playSound()
        {
            song.play(); // Play
        }
    }
}

这是我的actionListener

class PlayStoHandler implements ActionListener {
    public void actionPerformed(ActionEvent event) {
        String computerRand = sps.computerChoice();
        txtComputerRand.setText(computerRand);
        String result = sps.play(Sps.ROCK);
        txtResult.setText(result);

        scis.setVisible(false);
        open.setVisible(false);
        stone.setVisible(true);
        pap.setVisible(false);
        win.setVisible(false);
        none.setVisible(false);
        lose.setVisible(false);

        if (result == "User Wins"){
            win.setVisible(true);

                              song.play(); // here i tried putting the song.play in this if section, the error I got was "song cannot be resolved"
        }

        else if (result == "Draw"){
            none.setVisible(true);
        }
        else {
            lose.setVisible(true);
        }
    }

我是初学者,所以这很可能是一个非常愚蠢的基本错误

任何帮助,将不胜感激

4

2 回答 2

1
songPath = new URL(getCodeBase(),"G:\\Uni\\Programming\\Rolling assignements\\Week0\\Programming week21");

URL 构造函数期望第二个字符串代表一个相对 URL,而您已经放置了一个文件路径。URL 总是有正斜杠,并且file:基于 URL 没有什么意义(WAV 托管在您的站点上,而不是最终用户的 HD)。

如果小程序正在由站点根目录的 HTML 加载,而没有codebase在 HTML 中声明,则调用 wav moo.wav并位于名为Week0/Programming week21正确路径的子目录中:

songPath = new URL(getCodeBase(),"Week0/Programming week21/moo.wav");

但是为了让事情变得更简单,至少目前,将 HTML、applet剪辑放在同一个目录中并使用:

songPath = new URL(getCodeBase(),"moo.wav");
于 2013-03-18T16:16:29.690 回答
0

song是私人的。您创建了一种播放声音的方法,因此请使用它。

获取您的实例Audioapp并运行该playSound()方法。

于 2013-03-18T16:07:36.587 回答