I am trying to run this example but it is giving me "Bad version number in .class file..." error. i'm using jdk version 1.6 and example asks to use jdk 1.5. java should support downward compatibility. how can i run the example with jdk 1.6?
feedback
|
|
There's a subtle trap here that many new folks fall into. Sometimes -- often, actually -- you may have a copy of The extra If you've installed JDK 1.6 including the Java plugin, then you can simply delete the copy of | |||
|
feedback
|
|
A "Bad version number in .class file..." error occurs when you try to run a class file with a new version number on an older JVM. (And even then, not in all cases) Running a class file with an old version number on a newer JVM should work. You can check the version number of a class file using
and I think ...
| ||||
|
feedback
|