本文介绍了如何在eclipse中限制jdk api版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在我的eclipse构建路径中使用jdk1.6。但是我想限制eclipse才能显示jdk1.4.2中支持的那些方法。有没有办法这样做。



谢谢。

解决方案

项目属性 - > Java构建路径 - >库选项卡。

选择您的JDK / JRE,单击编辑

选择执行环境,选择J2SE-1.4,单击完成,单击确定



您可能还需要将JDK合规级别设置为1.4,即在Java编译器中的任一项目或工作区设置。


I am using jdk1.6 in my eclipse build path. But i want to restrict the eclipse to show only those methods that is supported in jdk1.4.2. Is there anyway to do this.

Thanks.

解决方案

Project properties -> Java build path -> Libraries tab.
Select your JDK/JRE, click Edit
Select "Execution environment", Select J2SE-1.4, click Finish, click OK

You might also want to set your JDK compliance level to 1.4, that's in Java Compiler in either project or workspace settings.

这篇关于如何在eclipse中限制jdk api版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 17:09