up vote 2 down vote favorite
1
share [g+] share [fb]

Given a Java class file (ClassName.class) with bytecode version X is there a general way to convert this class file from being represented in bytecode version X to being represented in bytecode version Y?

Assumptions:

  • The source code is not available. The class file is the only available representation of the class.
  • The class file is heavily obfuscated, so decompiling the class with say jad or similar program and then recompiling it with "-target ..." does not work.

Updates after initial post:

  • Update #1: Futhermore, assume that bytecode version X and bytecode version Y are sufficiently close so that all instructions used by the class (currently in bytecode version X) also exists in version Y.
link|improve this question

feedback

4 Answers

up vote 3 down vote accepted

For downgrading you can have a look at various methods to get Java 5/6 code running in Java 1.3/1.4. See my anwser to related question http://stackoverflow.com/questions/1011706/backport-java-5-6-features-to-java-1-4/1098923#1098923

link|improve this answer
Thanks for a great answer! retrotranslator did the trick! – knorv Oct 1 '09 at 22:01
Almost all of these tools are (5/6) -> (something earlier). I just want 6->5. – nick Jul 8 '11 at 21:36
Retrotranslator should be able to do 6->5. I tried it with HSqlDB 2. Unfortunately it does not handle the new java.sql classes, so it failed. But if you do not use any Java 6 API, give it a try. – Peter Kofler Jul 11 '11 at 19:38
feedback

You could use Apache BCEL

The Byte Code Engineering Library is intended to give users a convenient possibility to analyze, create, and manipulate (binary) Java class files

BCEL gives you the possibility of reading in a class file of a given version, manipulating it, generating a new class file stream, and then loading that into the VM using the low-level ClassLoader API. Very fiddly, no doubt, and I doubt this will let you downgrade the version as easily as you could prograde.

link|improve this answer
1  
ASM would be a better option if support is required for more recent features like annotations ( asm.ow2.org ). Otherwise, this approach should work. – McDowell Oct 1 '09 at 9:01
1  
Ah, OK. I haven't really been keeping up with this stuff, it scares me. – skaffman Oct 1 '09 at 9:11
feedback

No. While later versions of Java will be able to execute that bytecode, you can't upgrade it: Later versions of the class files have a different format.

You can't downgrade it either because there is no way to replace the missing bytecodes by other constructs in older versions of Java.

[EDIT] IIRC, Sun added at least a single new bytecode instruction for every major version of Java. This is usually the reason for major Java releases: Changes to the bytecode.

That said, just try your luck and change the major version of the class file and see if your newer VM will load it. I doubt it will work for any complex example but you might be lucky.

link|improve this answer
1  
Even though a program may or may not exist, in theory it should be possible though. Just like a compiler transforms sourcecode into a bytecode, in theory a compiler could also exists which translates different bytecode versions to eachother. – Toad Oct 1 '09 at 7:44
1  
reinier: I'm not convinced it's practical. See this document about the Java 6 verifier: jdk.dev.java.net/verifier.html Can you build a StackMapTable from bytecode alone? – Aaron Digulla Oct 1 '09 at 7:55
Aaron: Please see "Update 1". Does that clarification alter your answer? – knorv Oct 1 '09 at 8:42
@knorv: Not really. What are you up to anyway? Why do you need this? – Aaron Digulla Oct 1 '09 at 9:28
Aaron: Long story short; I'm stuck with an old version of Java in a production environment. – knorv Oct 1 '09 at 11:28
show 3 more comments
feedback

Use retroweaver

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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