在运行时查找打包的非java文件的路径

发布于 2024-08-19 00:48:26 字数 178 浏览 4 评论 0原文

所以这可能是一个愚蠢的问题但是...

我想将特定的 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 技术交流群。

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

发布评论

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

评论(1

梦与时光遇 2024-08-26 00:48:26

getClass().getResource(String path) 使用相对路径来定位类路径资源。它返回一个 java.net.URL< /代码>。或者,您可以使用 getResourceAsStream(..) 获取资源的 InputStream

getClass().getResource(String path) uses a relative path to locate a classpath resource. It returns a java.net.URL. Alternatively, you can use getResourceAsStream(..) to obtain the InputStream to the resource.

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