在运行时查找打包的非java文件的路径
所以这可能是一个愚蠢的问题但是...
我想将特定的 WSDL 文件与 eclipse 中的 EJB 项目一起打包。在我的代码中引用此文件的最佳方式是什么?
我想使用相对路径,但当前目录从 JBOSS 安装的 /bin 目录开始。似乎应该有一种方法来引用与项目文件结构相关的文件。
有什么想法吗?
So this might be a stupid question but...
I want to package a specific WSDL file in with an EJB project within eclipse. What would be the best way to refer to this file in my code?
I would like to use a relative path but the current directory starts off in the /bin directory of my JBOSS installation. It seems like there should be a way to refer to the file in relation to the project file structure.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
getClass().getResource(String path)
使用相对路径来定位类路径资源。它返回一个java.net.URL< /代码>
。或者,您可以使用
getResourceAsStream(..)
获取资源的InputStream
。getClass().getResource(String path)
uses a relative path to locate a classpath resource. It returns ajava.net.URL
. Alternatively, you can usegetResourceAsStream(..)
to obtain theInputStream
to the resource.