Eclipse 中的 JRE 源文件
我无法查看 JDK 类,我安装了 JDK 和 JRE 附带的 glassfish,并且我已尝试一切方法将源添加到 eclipse,但没有运气,src.zip 在 glassfish 安装程序中不存在。
JRE6 上不存在 src.zip 那么我如何将源添加到 Eclipse 中?
感谢您的帮助
I am not able to look at JDK classes, i installed glassfish wich comes with the JDK and JRE and i have tried everything to add the sources to eclipse but no luck, the src.zip does not exist on the glassfish installer.
the src.zip does not exist on JRE6 so how the h can i add the sources to Eclipse?
thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想自动访问 Java 源代码,则必须在 Eclipse 中使用 JDK 而不是 JRE。
转到首选项->安装 JRE 并将 JDK 路径添加到 Eclipse。在您的项目类路径中使用该路径。
You must use the JDK not JRE in Eclipse if you want to gain access to the Java source automatically.
Go to preferences-> Installed JREs and add a JDK path to Eclipse. The use that one in you project class path.
src.zip 通常位于 JDK 的根目录中(但不在 JRE 中)。您可以从 Oracle 主站点 http://www.oracle.com/technetwork/java/javase/downloads/index.html" rel="nofollow">http:// /www.oracle.com/technetwork/java/javase/downloads/index.html
src.zip is generally in the root directory of a JDK (but not in a JRE). You can download a Sun / Oracle JDK from the main Oracle site at http://www.oracle.com/technetwork/java/javase/downloads/index.html
我必须重新下载 JDK ,安装它,然后获取 src.zip 并将其手动放置在我的 c:\glassfish3 安装中,现在一切正常了。
谢谢
I had to re-download the JDK , installed it then grabbed the src.zip and place it manually in my c:\glassfish3 installation, now it's fine.
thanks