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

I have compiled a class with java version 1.5.

When i deployed it in the server it gave me bad version error.

If i compile it with java version 1.5.0_06 does that make a difference if the server is having java of version 1.5.0_06

1.Does the last number in version also make the difference??

2.javap -verbose ClassName gives me the minor and major version but how to know with which update the class is compiled with??

Thanks, Sandeep

share|improve this question
1  
In an unrelated note: Java 1.5.0_06 is ANCIENT. It was release in December 2005! You should update at least to the most recent release of Java 5, or you'll have security holes bigger than your average barn door. – Joachim Sauer Jun 14 '11 at 9:57

3 Answers

The JRE/JDK 1.5.0_06 is an implementation of Java 1.5 (or Java 5, depending on which day of the week it is).

So no, there is no difference, classes compiled for Java 1.5 should work just fine on that version.

The class version won't tell you which update of the JDK the class was compiled with, and that information should also not be relevant.

share|improve this answer
thanks for the quick reply... but the server is throwing error. I have checked other applications in server with javap and they are showing the same minor: 0 major:49 as my class files also show the same even though it is throwing the bad class version error... – Sandeep Jun 14 '11 at 9:39
Major: 49 would be correct for classes compile by (and/or for) Java 5. – Joachim Sauer Jun 14 '11 at 9:45
i just now deployed class file compiled with 1.5.0_06 now its working fine... – Sandeep Jun 14 '11 at 9:46

Compile a class (any class) with both JDK 1.5 and JDK 1.5.0_06. Then compare the major/minor version of the one compiled with 1.5 with the one compiled with 1.5.0_06. If they were identical, you should be fine running the class compiled with 1.5 on a server that uses Java 1.5.0_06. Otherwise you can not.

share|improve this answer
actually i did wat u said both minor and major versions were same but server throwed error.. i couldnot hav any guesses... strange... – Sandeep Jun 14 '11 at 11:10
@Sandeep: my guess is that you're not deploying what you think you are deploying. – Joachim Sauer Jun 14 '11 at 12:37
@Sandeep: maybe one of the JAR files that your project depends on is compiled with Java 6. – Behrang Saeedzadeh Jun 15 '11 at 0:54

1.Does the last number in version also make the difference??

No. It should not. However, I have faced issues at runtime due to minor version differences. On further investigation, it was found to be due to incomplete understanding of APIs. The developer was expecting obj.getClass().getFields() to return the fields in the order of declaration and it was working that way in one version. In the newer update it was returning the fields in a different order. The API clearly says that "The elements in the array returned are not sorted and are not in any particular order."
Moral of the story: Always develop,test and deploy on the exact same version of Java.

2.javap -verbose ClassName gives me the minor and major version but how to know with which update the class is compiled with??

You cannot. The class file does not even carry that information. See the class-file format: http://en.wikipedia.org/wiki/Java_class_file

The problem that you are getting looks weird. Please post your solution if you get one.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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