从SVN下载代码后,如何在eclipse中自动生成java文件?
我通过 SVN 下载了 google 代码,然后在 Eclipse 中打开它,但没有创建自动生成的 Java 文件(即 R.java)。 怎么解决这个问题,请帮忙。
I downloaded a google code through SVN , then I opened it in Eclipse but the Auto-generated Java files i.e. R.java are not being created.
How to solve the issue.Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
构建项目应该足够了
Building the project should be enough
还要确保您从正确的级别检查项目。它必须位于创建它的项目级别,否则 Eclipse 将不知道它是一个 Java 项目。
例如:项目>我的项目1> src
不要在 Projects 中查看,请在 MyProject1 中查看
Also make sure you are checking out the project from the correct level. It has to be at the project level that it was created at or Eclipse will not know it is a Java project.
For example: Projects > MyProject1 > src
Dont check it out at Projects, check it out at MyProject1