如何将 xml 文件添加到 eclipse 中的 java 应用程序的类路径中?
我需要通过我正在创建的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我将生成一个单独的资源文件夹,右键单击它并选择
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将其放入java源文件夹中,并将其用作资源
Put it in java source folder, and use it as resource
将包含 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.