getResource 与父目录引用
我有一个java应用程序,我试图加载一个将包含在jar中的文本文件。
当我执行 getClass().getResource("/a/b/c/") 时,它能够为该路径创建 URL,我可以将其打印出来,一切看起来都很好。
但是,如果我尝试 getClass().getResource(/a/b/../")
,那么我会得到一个 null
URL。
它似乎不喜欢路径中的 ..
有人知道我做错了什么吗?如果有帮助的话,我可以发布更多代码。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
FilenameUtils 类中的 ="nofollow">
normalize()
方法(有四个)可以帮助您。它位于 Apache Commons IO 库中。The
normalize()
methods (there are four of them) in theFilenameUtils
class could help you. It's in the Apache Commons IO library.您在 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?