I have installed both jdk 7 and jdk8 in my system. But my java program is compiling version in 1.8 and executing in 1.7. So it is responding UnsupportedClassVersionError. How can i overcome this problem...
How can i resolve UnsupportedClassVersionError?
201 Views Asked by user3854150 AtThere are 4 best solutions below

Do not try to do this.
Java8 is the more recent release than Java7. So there are chances that the code which you are compiling with JDK1.8, the same code may not be executable with JDK1.7 as this may not contain the required libraries or the required functionality which are new to the JDK1.8
For Example, for-each loop, varargs, etc is supported by JDK1.5 versions and onwards. So compiling the source code containing above features and trying to run the program on JDK1.4 or it's prior versions is always going to result in an error, as those JDK versions will not be able to identify such code snippent.
However, Oracle's JVM supports backward compatibility. So you can always compile your code on previous version of JDK's and run it on the recent versions.
How to solve this following error.
Read more: