Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Possible Duplicate:
Tool to read and display Java .class versions

I'm trying to debug a "Bad version number in .class file' error in java, is there a way for me to check which version the .class files are?

I'm using Jre1.5.0_6, but my JDK is version 1.6.0_13, I'm compiling with compatibility mode set to 1.5 in eclipse which I thought would work...

share|improve this question
See stackoverflow.com/questions/698129/… – Jon Jul 8 '09 at 4:58
Check out javadoc for more information on major and minor versions. – Neyas Jul 8 '09 at 5:33

marked as duplicate by Alex K, jschoen, UmNyobe, kmp, David Kroukamp Oct 22 '12 at 18:33

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

5 Answers

up vote 81 down vote accepted

You're looking for this on the command line (for a class called MyClass):

javap -verbose MyClass

You want the major version from the results. Here are some example values:

  • Java 1.2 uses major version 46
  • Java 1.3 uses major version 47
  • Java 1.4 uses major version 48
  • Java 5 uses major version 49
  • Java 6 uses major version 50
  • Java 7 uses major version 51
share|improve this answer

Btw, the reason that you're having trouble is that the java compiler recognizes two version flags. There is -source 1.5, which assumes java 1.5 level source code, and -target 1.5, which will emit java 1.5 compatible class files. You'll probably want to use both of these switches, but you definitely need -target 1.5; try double checking that eclipse is doing the right thing.

share|improve this answer

You can try jclasslib

http://sourceforge.net/projects/jclasslib/

share|improve this answer

Does the -verbose flag to your java command yield any useful info? If not, maybe java -X reveals something specific to your version that might help?

share|improve this answer

Free JarCheck tool here

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.