支持 IDE 和生成的 JAR 的 Java 路径
我的代码中的路径名有问题。假设我有一个主类:
com.test.LoadFile.java
同样,我在 com.test 下有一个
myxml.xml
文件。这意味着 Java 文件和 XML 文件位于同一个包下。
有人可以建议我如何(在 LoadFile 内)
File file = new File("???/myxml.xml")
路径应该是什么,以支持两者:
Eclipse IDE 代码(将上述代码包含到单个 Java 项目中之后) 和
在 IDE 外部运行主 LoadFile 类(在 JAR 文件中)
我应该使用什么作为路径变量的值包含在生成的项目 JAR 中吗?
I have an issue with path names in my code. Let's say I have a main class:
com.test.LoadFile.java
Similarly I have a myxml.xml
file under com.test.
Meaning that the Java file and XML file are under same package.
Can somebody suggest how, when I do (inside LoadFile)
File file = new File("???/myxml.xml")
What should the path be, to support both:
Eclipse IDE code (after including the above code into a single Java project)
andRun the main LoadFile class outside of the IDE (in a JAR file)
What should I use as the value of the path variable to include in the generated project JAR?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 getResourceAsStream() 读取 XML 文件,只要它位于 CLASSPATH 中:
编辑:如果要打包到 .jar 中,则必须在 jar 的根文件夹中使用“/”指定资源的完整路径字符串的开头
You can read the XML file using getResourceAsStream(), as long as it's in the CLASSPATH:
EDIT: If you are packaging into a .jar, you must specify the complete path of the resource from the jar's root folder using "/" at the beginning of string