在罐子里获取文件
我正在将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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论