运行 jar 文件时出现 Java FileNotFoundException

发布于 2024-10-07 13:57:58 字数 200 浏览 8 评论 0原文

我使用 All 加载资源

getClass().getResource("/package/my_reource.file").getFile()

在我的项目中,当我在 netbeans 中运行项目时,

,但如果我运行 jar 文件,我会得到 FileNotFoundException,为什么?谢谢。

In my project I load my resource using

getClass().getResource("/package/my_reource.file").getFile()

All works good when I run the project in netbeans, but if I run the jar file, I get FileNotFoundException, why?

Thanks.

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

注定孤独终老 2024-10-14 13:57:58

您可以使用 InputStream 而不是 getClass().getResource("/package/my_reource.file").getFile()

您应该使用

getClass.getResourceAsStream("/package/myresource.file")

You can use InputStream rather than getClass().getResource("/package/my_reource.file").getFile()

You should use

getClass.getResourceAsStream("/package/myresource.file")
微暖i 2024-10-14 13:57:58

我认为您不需要文件名。您更需要它的内容。因此,请使用 getResourceAsStream() 获取 InputStream 并从其中读取内容。

I don't think you need the filename. You rather need its content. So use getResourceAsStream() to obtain the InputStream and read the content from there.

葮薆情 2024-10-14 13:57:58

检查你的罐子。我相信你的文件不存在。
原因取决于您如何创建 jar。如果您使用 netbeans 执行此操作,请检查您的设置。可能它只包含 *.class 文件?关于蚂蚁也是如此。检查标签。

Check your jar. I believe that your file is not there.
The reasons depend on how are you creating your jar. If you are doing it using netbeans, check your settings. Probably it includes only *.class files? The same is about ant. Check tag.

鹤仙姿 2024-10-14 13:57:58

getFile() 返回 getResource() 返回的 URL 的文件路径部分
因此,如果它在 Jar 中,您必须读取 jar 才能获取文件。如果它在文件系统上,您可以使用 FileInputStream 读取。

如果您想获取 InputStream 并且没有创建获取它的位置,请使用 getResourceAsStream()

The getFile() returns the file path portion of the URL returned by getResource()
So if its in the Jar, you have to read the jar to gett he file. If its on the filesystem you can read using FileInputStream.

If you want to get the InputStream and you don't create where you get it from use getResourceAsStream()

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文