如何向我的 Java JFrame 添加一些声音?

How can I add some sound to my Java JFrame?

我正在用 JFrame 制作 Java 游戏。游戏快完成了,但我想给它添加一些声音。就像游戏开始时一样,声音也应该开始。我查过互联网,但代码要么不起作用,要么很长。谁能帮我提供一些可以在 JFrame 中运行的简单代码?

播放 .wav 文件的基本示例:

import java.awt.event.*;
import javax.swing.*;
import javax.sound.sampled.*;
import java.net.URL;
import java.io.*;

class SoundTest
{
    public static void main(String[] args) throws Exception
    {
        //URL file = new URL("file:./flyby1.wav");
        //URL file = new URL("file:c:/users/netro/java/flyby1.wav");
        URL file = new URL("https://www.wavsource.com/snds_2020-10-01_3728627494378403/sfx/air_raid.wav");

        AudioInputStream ais = AudioSystem.getAudioInputStream(file);
        Clip clip = AudioSystem.getClip();
        clip.open(ais);

        JButton button = new JButton("Play Clip");
        button.addActionListener( new ActionListener()
        {
            @Override
            public void actionPerformed(ActionEvent ae)
            {
                clip.setFramePosition(0);
                clip.start();
            }
        });

        JOptionPane.showMessageDialog(null, button);
    }
}