vote up 1 vote down star
1

I'm looking for a fail-safe way to round-trip between a JVM class file and a text representation and back again.

One strict requirement is that the resulting round-tripped JVM class file is exactly functionally equivalent to the original JVM class file as long as the text representation is left unchanged.

Furthermore, the text representation must be human-readable and editable. It should be possible to make small changes to the the text representation (such as changing a text string or a class name, etc.) which are reflected in the resulting class file representation.

The simplest solution would be to use a Java decompiler such as JAD to generate the text representation, which in this case would simply be the re-created Java source code. And then use javac to generate the byte-code. However, given the state of the free Java decompilers this approach does not work under all circumstances. It is rather easy to create obfuscated byte-code that does not survive a full round-trip class-file/java-source/class-file (in part because there simply isn't a 1:1 mapping between JVM byte-code and Java source code).

Is there a fail-safe way to achieve JVM class-file/text-representation/class-file round-tripping given the requirements above?

Update: Before answering - save time and effort by reading all the requirements above, and note specifically:

  • "Text-representation of JVM bytecode" does not necessarily mean "Java source-code".
flag

Yes, there is a fail-safe way: create your own app. Although if you do that, a text representation is probably not the most useful. Perhaps if you explained your actual problem, people could point you to a better solution. – kdgregory Sep 21 at 12:02
kdgregory: The problem is simply that bytecode does not map 1:1 to Java source code, so to convert Java byte-code to something human readable/editable/assemblable you need something other than a Java decompiler, Please let me know if you need any further clarifications. – knorv Sep 22 at 20:25
You were sufficiently clear in your original question. Perhaps I was not sufficiently clear in my response: if you want such a tool, you will have to write it yourself. The reasons that people use decompilers are not to make changes to the decompiled code, therefore the output of a decompiler is not meant to be recompiled. – kdgregory Sep 22 at 20:32
kdgregory: Ah, sorry - thought you meant that I should write my own Java apps rather than trying to decompile/disassemble existing byte-code :-) – knorv Sep 22 at 20:48
Furthermore, the text representation must be human-readable and editable. this particular requirement essentially makes it a decompiler to source code, and that you want a decompiler that can represent all possible programs representable by java byte code. as kdgregory says, i dont think such a program exists. a slight compromise might be to store a textual representation of bytecode (i.e., assembly). tho i doubt that is what you actually want. if you explain why you would want this tool, may be there is another way to achieve the result. – Chii Sep 25 at 11:18
show 1 more comment

6 Answers

vote up 4 vote down check

The BCEL project provides a JasminVisitor which will convert class files into jasmin assembly.

This can be modified and then reassembled into class files. If no edits are made and the versions are kept compatible the the round trip should result in identical class files except that line number mapping may be lost. If you require a bit for bit identical copy for the round trip case you will likely need to alter the tool to take aspects of the code which are pure meta data as well.

jasmin is rather old and is not designed with ease of actually writing full blown programs in assembly but for modifying string constant tables and constants it should be more than adequate.

link|flag
vote up 1 vote down

This related question might show what you're looking for.

link|flag
vote up 0 vote down

Maybe I'm being overly simplistic - but have you considered using JAXB (or something along those lines) and just serializing all your classes to xml?

It's not going to work for all situations - but from your question it seems like this would be one feasible approach

link|flag
1  
I don't think JAXB operates on bytecode. – knorv Sep 20 at 13:58
Well I suppose I've discovered one problem with stackoverflow... getting downvoted even though the answer supplied was entirely valid per the original post... take a look at the original: stackoverflow.com/revisions/…. NOWHERE in there was "JVM Bytecode" referenced. The original question asked for "round-trip between a Java class file and a text representation and back again." also note that given the original post, JAXB - depending on how one writes the class file, would create a "functionally equivalent" object. – dovholuk Sep 22 at 1:32
"JVM bytecode" equals "Java class file", right? The edit was meant to clarify, not to change the question. – knorv Sep 22 at 20:44
1  
I think he would have said "source code" and not "text representation" if he meant source code. – erikkallen Sep 22 at 20:48
vote up 0 vote down

I'm not sure if this relates to your actual requirement, but if you wish to make readable changes in source code, you must have the source code available since most decompilers will have some failing or another (considering Java 6 compatible classes not Java 1.4).

You could take a look at the BeanShell interpreter for Java, since that would allow you to make changes in the source code, without worrying about the byte code decompilation step. You could "evaluate" your source at runtime, after suitable changes have been done in the text representation. It is true that this will come at a performance cost.

link|flag
1  
As pointed out in the question "text-representation of bytecode" is not necessarily "Java source-code". – knorv Sep 20 at 14:02
Well, I didn't realize that since it wasn't very obvious. What is the format/structure of text representation? Is it defined and available for anyone to view? – Vineet Reynolds Sep 20 at 14:26
The specific format/structure does not matter as long as it is human readable/editable and can be converted into byte-code again. – knorv Sep 22 at 20:45
@knorv: that is just a very round about way of obtaining, from byte code, the source code (whether it is actual java source, or some other textual representation). the requirement of human readable/editable makes it so. if you didnt have that requirement, it'd be an easy problem to solve. – Chii Sep 25 at 11:14
@Chii: The round-tripping part is the most important part of the requirement. It doesn't matter if the text representations is a bit messy. – knorv Sep 25 at 13:22
show 1 more comment
vote up 0 vote down

Jasmin and Kimera?

link|flag
Can Kimera be used to create a .j (Jasmin file) representation of a class file? Please elaborate. – knorv Sep 20 at 17:15
vote up 0 vote down

No. There exists valid byte-code without a corresponding Java program.

The Soot project has a quite sophisticated decompiler- http://www.sable.mcgill.ca/dava/ - which may be useful for those byte codes coming from a Java compiler. It is, however, not perfect.

Your best bet is still getting the source code for the class files.

link|flag
As pointed out in the question "text-representation of bytecode" is not necessarily "Java source-code". – knorv Sep 20 at 20:21
Then you need a java byte code disassembler/assembler... Java byte code is not much fun handcrafting. – Thorbjørn Ravn Andersen Sep 20 at 23:07
Feel free to suggest a Java byte code disassembler/assembler which fulfills the stated requirements. – knorv Sep 20 at 23:21

Your Answer

Get an OpenID
or

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