eclipse中的 Compiler compliance level含义

The compiler compliance setting tells the compiler to pretend it‘s a different version of Java.

The Java 8 compiler will produce class files in the Java 8 version of the class file format, and accept Java 8 source files. JRE 6 can‘t load this version, because it was created after JRE 6 was.

If you set the compliance level to "JRE 6", it will instead compile Java 6 source files into Java 6 class files.

It‘s like saving a Word document as "Word 97-2003 format" - so that Word 97-2003 can read your document. You‘re saving the class files in Java 6 format so that Java 6 can read them.

我的理解就是 虽然eclipse使用的是jdk 8,但是通过设置 complier compliance setting 我们可以在jdk 6 (或其他) 环境中进行编译。 好比在word2010中将word文件保存为word2003的格式。

时间: 2024-10-25 10:45:01

eclipse中的 Compiler compliance level含义的相关文章

Eclipse工程中Java Build Path中的JDK版本和Java Compiler Compiler compliance level的区别(转)

在这里记录一下在eclipse中比较容易搞混淆和设置错误的地方.如下图所示的功能: 最精准的解释如下: Build Path是运行时环境  Compiler是编译时环境  假设,你的代码用到泛型,Build Path环境为1.5,Compiler环境为1.4,那么会显示编译错误,无法编译:但是这样的web项目是可以在web容器中运行的,前提是你的容易支持1.5语法. Build Path里面是你的class文件的运行环境级别,非编译器需要使用到的,例如,如果用的1.4就不能使用泛型.而Compi

Eclipse编译Android项目时出现的问题:Android requires compiler compliance level 5.0 or 6.0. Found '1.8' instead.

Consle: Android requires compiler compliance level 5.0 or 6.0. Found '1.8' instead. Please use Android Tools > Fix Project Properties. 然而,按照提示的方法,右键项目->Android Tools->Fix Project Properties时,发现并没有卵用... 我的解决方式是: 右键项目->Properties,把 JavaCompiler

Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead的解决的方法

今天在eclipse里报这个错误: Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead. Please fix project properties 找了一下解决方法: 1. 项目 右键 ->android tools ->Fix Project 2. 假设不能够.检查Project -> Properties->Java Compiler 确认JDK compliance被设置为1.

Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead.解决方法

今天在eclipse里报这个错误: Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead. Please fix project properties 1. 项目 右键 ->android tools ->Fix Project 2. 如果不可以,检查Project -> Properties->Java Compiler 确认JDK compliance被设置为1.6,并且enable

Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tool

重装操作系统后,要重新配置Android开发环境.配置成功后,添加原本项目时却出现了错误! Android requires compiler compliance level 5.0 or 6.0. Found '1.7' instead. Please use Android Tools > Fix Project Properties. 解决方法: 1.项目右键 ->android tools->Fix Project 2.如果不可以,检查Project->Propertie

Android requires compiler compliance level 5.0 or 6.0. Found '1.8' instead. Please use Android Tools>Fix project Properties.

重装操作系统之后,或者破坏了Android的开发环境之后,需要重新配置好Android的开发环境.但是配置好后,导入原有的项目时,报错: Android requires compiler compliance level 5.0 or 6.0. Found '1.8' instead. Please use Android Tools>Fix project Properties. 解决方法: 1.按照报错的提示,项目右击-->Android Tools-->Fix project P

eclipse中build path 中JDK与java compiler compliance level的问题(转)

roject facets做什么用? http://baike.baidu.com/view/6257360.htm,其实我感觉,就是让我们在创建项目时候,可以独立定义一个有一个模板供我们使用,在里面定义各种用到服务的版本,你在导入从其他地方拿过来的项目时候,需要修改项目与project facets的编译环境一致. 牛人博客:(有详细解释jdk compile与build path) http://blog.csdn.net/shan9liang/article/details/1726651

Compiler compliance level of project HelloSSH should be 5.0 .Your current workspace default csdn

 MyEclipse只是Eclipse的一个插件,所以MyEclipse本身不带JDK,JDK是你事先装好并且配置Environment Variable完成后的.Eclipse自动配置完成的.当然Eclipse环境里似乎有一个编译器.在Window--Preferences--Java--Compiler下面选择 你是不是这里选择了6.0了?把它改成与你当前版本相同的版本.或是低级版本. 不用理会,JDK6.0向下支持J2EE1.4,放心大胆的用,只要Application Server不

利用Eclipse中的Maven构建Web项目(三)

利用Eclipse中的Maven构建Web项目 1.将Maven Project转换成动态Web项目,鼠标右键项目,输入"Project Facets" 2.根据Dynamic Web Module的版本修改Java Compiler中的"Compiler compliance level"的版本 3.设置部署程序集(Web Deployment Assembly),删除含有"test" 4.将Maven的jar包发布到lib下, "A