vote up 1 vote down star
1

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.
flag

4 Answers

vote up 3 vote down check

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|flag
Thanks for a great answer! retrotranslator did the trick! – knorv Oct 1 at 22:01
vote up 2 vote down

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|flag
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 at 9:01
1  
Ah, OK. I haven't really been keeping up with this stuff, it scares me. – skaffman Oct 1 at 9:11
vote up 1 vote down

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|flag
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. – reinier Oct 1 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 at 7:55
Aaron: Please see "Update 1". Does that clarification alter your answer? – knorv Oct 1 at 8:42
@knorv: Not really. What are you up to anyway? Why do you need this? – Aaron Digulla Oct 1 at 9:28
Aaron: Long story short; I'm stuck with an old version of Java in a production environment. – knorv Oct 1 at 11:28
show 3 more comments
vote up 0 vote down

Use retroweaver

link|flag

Your Answer

Get an OpenID
or

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