从“当前项目”的类路径位置读取文件

发布于 2024-10-21 12:10:46 字数 717 浏览 0 评论 0原文

我在 eclipse 中有 2 个项目 A 和 B。 B 依赖于 A。项目 A 中有一个文本文件 "file.txt"。该文件可以通过例如 getClass().getResourceAsStream(...)... 加载到项目 B 中,因为该文件的位置位于 classpath 中。我想在项目 B 中提供相同的文件名,并且仅当项目 B 中存在文件时才执行某些操作。如果项目 B 中没有文件,则在使用 getClass().getResourceAsStream() 加载期间不应找到任何文件。 ..)。目前该文件将始终被找到。

谢谢你的帮助。

亲切的问候 塞巴斯蒂安,


我需要提供有关该问题的更多信息。对不起。

有一个项目C,它是核心。在项目 C 中,有一个类执行以下操作:

  1. 检查 file.txt 是否存在。这是仅检查文件名的基本代码。无包名。我不想改变它。
  2. 如果是,那就做点什么。
  3. 如果现在就做点别的事。

A 依赖于 C,B 也依赖于 C。如果 A 将被执行,那么 C 中的基本代码将尝试查找 file.txt

如果 B 将被执行,那么基本代码也将尝试查找 file.txt。如果B项目中没有文件,那么它会找到,因为它在A中。我不想要它。

非常感谢你。

i have 2 projects A and B in eclipse. B has dependency to A. In project A is a text file "file.txt". This file can be loaded in project B by for example getClass().getResourceAsStream(...)... because the location of the file is in classpath. I want to provide this same file name in project B and do some action only if file exists in project B. If there is no file in project B then no file should be found during loading with getClass().getResourceAsStream(...). Currently the file will be always found.

Thank you for help.

Kind regards
Sebastian


I need to provide a little bit more information about the problem. Sorry.

There is a project C which is the core. In project C there is class which do the following:

  1. Check if file.txt exists. This is the base code which checks only the file name. No package name. And i dont want to change it.
  2. if yes then do something.
  3. if now then do something else.

A depends on C and B also depends on C. If A will be executed then the base code from C will be try to find file.txt.

If B will be executed then the base code will be also try to find file.txt. If there is no file in B project then it will found because it is in A. I dont want it.

Thank your very much.

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

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

发布评论

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

评论(1

岁月无声 2024-10-28 12:10:46

将项目 B 中的文件添加到不同的类路径位置,首先尝试项目 B 中的位置,然后检查项目 A 中的文件。假设位置是项目 B 中的 com.myPackage.file1 和项目 B 中的 com.myPackage.projA.file1项目A。

Add the file in project B in a different classpath location, you try first the location in project B and then check the file in project A. Say the location is com.myPackage.file1 in project B and com.myPackage.projA.file1 in project A.

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