I have generated .jar file in windows.
I have to execute that .jar file in unix .
I am running that command (java -jar myJar.jar), but it's giving
java.lang.UnsupportedVersionError
I am using java version 1.5.0.12 in Unix.
|
|
|||
|
|
|
Recompile your application with Java 5 on your Windows machine. (Java 6 generates Java 6 compatible byte code by default to use new facilities. The easiest for you is to install a Java 5 JDK and use it to recompile your application) |
||
|
|
|
|
You say you're using Java 5 on Unix. Did you compile it using Java 6 on Windows? Then it's obviously not going to work. Possible solutions:
|
||
|
|
|
You must be trying to launch a jar compiled with JDK6, with a local java1.5. You can either:
:
to check if you can generate 1.5 bytecode compatible. |
|||
|
|
|
|
Have you tried using a newer version of Java on your Unix system? If you control the jar file, could you target Java 1.5 when it's compiled? |
||
|
|
|
|
You should also keep in mind that JVM are not forward compatible, so if you've made a jar-file using JDK 1.6, it won't work with JDK 1.5! In this case you may either:
|
||||
|
|
|
Same as under Windows.
|
||
|
|