Eclipse 源文件存储在与默认目录不同的目录中

发布于 2024-11-25 00:20:40 字数 258 浏览 3 评论 0原文

我可以在 Eclipse 项目中使用存储在与默认目录不同的目录中的文件,而不更改所有文件的默认值,即其他文件可以存储在默认目录或其他路径中吗?

示例:

在 Eclipse 项目的 src 中,我有三个类

a.java
b.java
c.java

a.java 可以是指向存储在 /user/documents/ 中的文件的指针 b.java 指向存储在 users/document2/ 中的文件的指针

Can I use a file in a project in Eclipse that is stored in a different directory than the default without changing the default for all files i.e. other files could be stored in the default directory or other paths?

Example:

in src in a project in eclipse I have three classes

a.java
b.java
c.java

The a.java could be a pointer to a file that is stored in /user/documents/
and b.java a pointer to a file that is stored in users/documents2/

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

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

发布评论

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

评论(1

静谧 2024-12-02 00:20:40

在 Eclipse 3.7 中可以这样做:创建一个新文件(不是类) - File/NewGeneric/File,然后打开向导页面的 Advanced 部分,您可以在其中链接文件系统中的文件。

警告:这需要 Eclipse 3.7,在 Eclipse 3.6 中不起作用,并且要非常小心,因为这可能会扰乱版本控制方法(您的合作伙伴从存储库下载项目可能没有在同一位置的文件),并且您必须手动确保引用的文件到达正确的 Java 包。

所以,一般来说,你问的问题是可能的,但我不建议这样做。

In Eclipse 3.7 it can be done: create a new file (not class) - File/New, Generic/File, and there open the Advanced part of the wizard page, where you can link a file from the file system.

Warning: this needs Eclipse 3.7, in will not work in Eclipse 3.6, and be very careful, as this could mess with e.g. versioning approaches (your partner, who downloads the project from the repository might not have the files in the same location), and you have to make sure manually, that the referenced file gets to the correct Java package.

So, in general, it is possible what you asked, but I do not recommend doing it.

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