在 MyEclipse 中 - 代码中的所有包导入中缺少包前缀
我只是从其他人那里提出参与这个项目,并且没有任何使用 MyEclipse 的经验(并且对 Eclipse 本身的了解也很少)。查看包结构时,所有包的命名如下:
java.com.example1
java.com.test
代码中的 import 和 package 语句如下:
package com.example1
import com.test
这给了我找不到包的错误,我该怎么解决这个问题?我觉得这是非常明显的事情,但我没有得到
I just offered to work on this project from someone else, and have not had any experience with MyEclipse (and minimal with Eclipse itself). When looking through the package structure all the packages are named like this:
java.com.example1
java.com.test
The import and package statements in the code are like this:
package com.example1
import com.test
Which is giving me package not found errors, what can I do to fix this? I feel this is something really obvious here that I'm not getting
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Sam,
右键单击 Eclipse 中的项目并打开“属性”,然后从左侧选择“Java 构建路径”。在右侧,您将看到“源”选项卡。删除现有的源文件夹,然后通过单击“添加文件夹”重新添加它们,然后选中树中“Java”的复选框。您告诉 eclipse 将此“Java”下的所有文件夹视为您的包\文件。
不确定我的解释是否正确,但请回复,我会看看是否可以附上屏幕截图。祝你好运。
-红人
Sam,
Right click the project in Eclipse and open Properties and select "Java Build Path" from the left side. On the right hand side you will see a Tab "Source". Remove the existing source folders and re-add them by clicking "Add Folder" and select check box for "Java" in the tree. You are telling eclipse to consider all the folders under this "Java" as your packages\files.
Not sure if i explained properly but do reply back and i will see if i can attach a screenshot. Good luck.
-Reds