从.jar文件播放声音

时间:2017-06-03 22:09:16

标签: java swing jar embedded-resource audioinputstream

我查看了无数不同的StackOverflow答案以及其他网站的答案,但没有一个解决方案解决了我的问题。我不能为我的生活得到我的.wav文件。

这是我的代码:

声音等级:

public class Sound {
/**
 * Static file paths for each sound.
 */
public static String stepSound = "/resources/step.wav";

/**
 * Audio input stream for this sound.
 */
private AudioInputStream audioInputStream;

/**
 * Audio clip for this sound.
 */
private Clip clip;

/* -- Constructor -- */

/**
 * Creates a new sound at the specified file path.
 * 
 * @param   path    File path to sound file
 */
public Sound(String path) {
    // Get the audio from the file
    try {
        // Convert the file path string to a URL
        URL sound = getClass().getResource(path);
        System.out.println(sound);

        // Get audio input stream from the file
        audioInputStream = AudioSystem.getAudioInputStream(sound);

        // Get clip resource
        clip = AudioSystem.getClip();

        // Open clip from audio input stream
        clip.open(audioInputStream);
    } catch (UnsupportedAudioFileException | IOException | LineUnavailableException e) {
        e.printStackTrace();
    }
}

/* -- Method -- */

/**
 * Play the sound.
 */
public void play() {
    // Stop clip if it's already running
    if (clip.isRunning())
        stop();

    // Rewind clip to beginning
    clip.setFramePosition(0);

    // Play clip
    clip.start();
}

/**
 * Stop the sound.
 */
public void stop() {
    clip.stop();
}
}

导致错误的构造函数调用:

// Play step sound
new Sound(Sound.stepSound).play();

我知道这不是第一次在这个网站上提出或回答过这样的问题,但我此时已经尝试了几个小时的其他解决方案,而我发现的只是痛苦和挫折。如果需要,我可以发布更多代码。提前谢谢。

编辑:我已解压缩.jar文件并确认该文件确实存在。问题是URL最终为空,因此抛出NullPointerException

编辑#2:如果出现其他问题,请添加更多代码。

0 个答案:

没有答案