getResource 与父目录引用

发布于 2024-12-07 14:43:23 字数 286 浏览 0 评论 0 原文

我有一个java应用程序,我试图加载一个将包含在jar中的文本文件。

当我执行 getClass().getResource("/a/b/c/") 时,它能够为该路径创建 URL,我可以将其打印出来,一切看起来都很好。

但是,如果我尝试 getClass().getResource(/a/b/../"),那么我会得到一个 null URL。

它似乎不喜欢路径中的 .. 有人知道我做错了什么吗?如果有帮助的话,我可以发布更多代码。

I have a java app where I'm trying to load a text file that will be included in the jar.

When I do getClass().getResource("/a/b/c/"), it's able to create the URL for that path and I can print it out and everything looks fine.

However, if I try getClass().getResource(/a/b/../"), then I get a null URL back.

It seems to not like the .. in the path. Anyone see what I'm doing wrong? I can post more code if it would be helpful.

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

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

发布评论

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

评论(2

北恋 2024-12-14 14:43:23

FilenameUtils 类中的 ="nofollow">normalize() 方法(有四个)可以帮助您。它位于 Apache Commons IO 库中。

final String name =  "/a/b/../";
final String normalizedName = FilenameUtils.normalize(name, true); // "/a/"
getClass().getResource(normalizedName);

The normalize() methods (there are four of them) in the FilenameUtils class could help you. It's in the Apache Commons IO library.

final String name =  "/a/b/../";
final String normalizedName = FilenameUtils.normalize(name, true); // "/a/"
getClass().getResource(normalizedName);
笨笨の傻瓜 2024-12-14 14:43:23

您在 getResource() 中指定的路径不是文件系统路径,并且无法以与 File 对象(及其同类)解析路径相同的方式进行规范解析。我可以认为您正在尝试读取相对于另一条路径的资源吗?

The path you specify in getResource() is not a file system path and can not be resolved canonically in the same way as paths are resolved by File object (and its ilk). Can I take it that you are trying to read a resource relative to another path?

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