在罐子里获取文件

发布于 2025-01-22 03:25:45 字数 604 浏览 0 评论 0原文

我正在将Java项目转换为JAR,但是当我将其转换时,一些我不再存在调用的文件。

例如,在我的弹奏方法(播放音乐)中,我得到了我想要的文件:

public void playSound(String fileName) {
    try {
        AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File(fileName));
        clip = AudioSystem.getClip();
        clip.open(audioInputStream);
        clip.start();
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}

然后,我称之为这样的方法:

playSound("src/main/java/calgaryFlamesTracker/music/Fall.wav");

这在Intellij中正常工作,但是当我通过JAR做同样的事情时,它说该文件不存在。我读了一些有关使用getClass()的东西。

I'm converting a java project to a JAR but when I convert it, some files that I make calls to no longer exist.

For example, in my playSound method (while plays music), I get the file that I want like this:

public void playSound(String fileName) {
    try {
        AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(new File(fileName));
        clip = AudioSystem.getClip();
        clip.open(audioInputStream);
        clip.start();
    } catch (Exception ex) {
        ex.printStackTrace();
    }
}

Then, I call the method like this:

playSound("src/main/java/calgaryFlamesTracker/music/Fall.wav");

This works fine in intelliJ but when I do the same thing through the JAR, it says the file does not exist. I read something about use getClass().getResource() but I'm not 100% sure on that.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文