AudioInput 流无法打开 .wav 文件

AudioInput stream cannot open .wav file

我正在尝试播放一个简单的 .wav 文件,但出现错误 "could not get audio input stream from input URL" 这是我的代码:

    try {
        URL url = this.getClass().getResource("click.wav");
        if (url == null) {
            System.err.println("Couldn't find the file");
        }
        else {
            AudioInputStream audioIn = AudioSystem.getAudioInputStream(url);
            Clip clip = AudioSystem.getClip();
            clip.open(audioIn);
            clip.start();
        }
    } catch (Exception e) {
        System.err.println(e.getMessage());
    }

然后我将文件 click.wav 拖到我的项目中

我清理了我的项目,它成功了