如何将 xml 文件添加到 eclipse 中的 java 应用程序的类路径中?

发布于 2024-11-03 18:34:13 字数 57 浏览 2 评论 0原文

我需要通过我正在创建的 java 应用程序中的类路径访问 xml 文件。如何在eclipse中实现它

I need an xml file to be accessed via the classpath in a java application i am creating . how to achieve it in eclipse

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

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

发布评论

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

评论(3

谜兔 2024-11-10 18:34:13

我将生成一个单独的资源文件夹,右键单击它并选择 Build Path >用作源文件夹。这样它就位于类路径上,但您不会将其与 Java 源文件混合

I'd generate a separate resources folder, right-click it and select Build Path > Use as Source Folder. That way it's on the class path, but you're not mixing it with your Java source files

深海不蓝 2024-11-10 18:34:13

将其放入java源文件夹中,并将其用作资源

Put it in java source folder, and use it as resource

り繁华旳梦境 2024-11-10 18:34:13

将包含 XML 的目录放入运行时类路径中,然后使用 className.Class.getResourceAsStream() 获取包含 XML 的 InputStream。

Put the directory containing the XML in the runtime classpath, then use className.Class.getResourceAsStream() to get an InputStream containing the XML.

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