将文件添加到类路径
我在我正在处理的代码中写了一条注释,它说文件名可以驻留在类路径中的任何位置,
如何将文件名/文件添加到 eclipse 中的这个类路径中?
谢谢
I have a comment written in the code i am working on which says the filename can reside anywhere in the class path
how do i add the filename/file to this classpath in eclipse?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在项目中,有一个名为 .classpath 的文件,其条目如下:
只需根据您的需要进行调整即可。
以图形方式,您可以通过项目属性 -> 来完成此操作构建路径->来源的选项卡。
In the project there is a file called .classpath with entries like:
<classpathentry kind="src" output="target/classes" path="src/main/java"/>
Just adapt it to your needs.
Graphically you can do it through the project properties -> build path -> source's tab.
假设您有一个标准 Java 项目,请在
src
文件夹中创建该文件。该文件夹中的文件位于“类路径上”。Assuming, you have a standard Java project, create the file inside the
src
folder. Files in this folder are "on the classpath".