支持 IDE 和生成的 JAR 的 Java 路径

发布于 2024-11-06 10:52:08 字数 456 浏览 2 评论 0原文

我的代码中的路径名有问题。假设我有一个主类:

com.test.LoadFile.java

同样,我在 com.test 下有一个 myxml.xml 文件。这意味着 Java 文件和 XML 文件位于同一个包下。

有人可以建议我如何(在 LoadFile 内)

File file = new File("???/myxml.xml")  

路径应该是什么,以支持两者:

  1. Eclipse IDE 代码(将上述代码包含到单个 Java 项目中之后) 和

  2. 在 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:

  1. Eclipse IDE code (after including the above code into a single Java project)
    and

  2. Run 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 技术交流群。

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

发布评论

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

评论(1

眉黛浅 2024-11-13 10:52:08

您可以使用 getResourceAsStream() 读取 XML 文件,只要它位于 CLASSPATH 中:

InputStream is = LoadFile.class.getClassLoader().getResourceAsStream("/myxml.xml");

编辑:如果要打包到 .jar 中,则必须在 jar 的根文件夹中使用“/”指定资源的完整路径字符串的开头

You can read the XML file using getResourceAsStream(), as long as it's in the CLASSPATH:

InputStream is = LoadFile.class.getClassLoader().getResourceAsStream("/myxml.xml");

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

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