如何在 java 运行时在类路径中添加 XML 文件?

发布于 2024-07-10 13:24:05 字数 69 浏览 4 评论 0原文

我不确定是否可以使用 URLClassLoader。 此外,仅 XML 的相对路径是已知的。

谢谢。

I am not sure if a URLClassLoader can be used. Also, only the relative path of the XML is known.

Thank You.

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

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

发布评论

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

评论(1

少女七分熟 2024-07-17 13:24:05

如果您只是想读取类路径中已有的 XML 文件,以便可以使用您喜欢的任何库来解析它,最紧凑的方法是使用 ClassLoader

InputStream is = ClassLoader.getResourceAsStream();
// use the input stream however you want
is.close()

请参阅 http://java.sun.com/javase/6/docs/api /java/lang/ClassLoader.html

If you just mean read in an XML file that is already on the classpath, so that you can parse it using whatever library you prefer, the most compact way is using a ClassLoader:

InputStream is = ClassLoader.getResourceAsStream();
// use the input stream however you want
is.close()

See http://java.sun.com/javase/6/docs/api/java/lang/ClassLoader.html

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