Is it possible to view bytecode of Class file?

JavaBytecodeBytecode Manipulation

Java Problem Overview


> Possible Duplicate:
> Is there a java classfile / bytecode editor to edit instructions?

Java source code is compiled into bytecode, which is actually in the class file. Is it possible to view bytecode of a compiled class?

If it is possible, can it be edited?

Is there an eclipse plugin for that available?

Java Solutions


Solution 1 - Java

Yes. You can use the javap command that's included with the JDK to see the byte code of a class. For example:

javap -c com.mypackage.MyClass

There are several libraries and tools that help you to work with Java bytecode, for example ASM and Jasmin.

Solution 2 - Java

The JDK comes with javap which is a tool to disassemble the byte code inside a class file. Editing on byte code level is possible. Have a look at BCEL, a java library designed to read, manipulate and write class files.

A list of tool and libraries to edit byte code can be found on java-net. For example JBE, a Java Byte Code editor that even comes with a GUI.

Solution 3 - Java

To view the bytecodes

Forget javap! The best plugin I have ever used is the "ASM - Bytecode Outline plugin for Eclipse"

http://asm.ow2.org/eclipse/index.html

It is from ASM (a bytecode manipulation framework).

It shows the bytecodes (that you asked for), stack elements (jvm style), and how to generate the same result (to produce the same bytecodes) using the asm framework methods.

Better still is the fact that it does so while you have the source code selected. You don't have to find the .class file in the bin directory to inspect it's bytecode.

To edit them

Using code:

  • ASM: Visitors based, very, very fast.
  • BCEL: Loads the bytecode as an in memory description of the class file.
  • Javassit: the easiest one to use, allows you to do pattern matching and expression replacement.

By hand: JBE

Solution 4 - Java

To my experience, jclasslib is one of the best bytecode viewers.

As for editors, there are two types: bytecode manipulation libraries, and editors with GUIs. This question has been asked few times on SO, you could check the answers and the links that were provided.

Just be careful that editing bytecode in not as straightforward as you think. The JVMS imposes many restrictions on how class files should be, and there is a great chance that one of your edit will violate one of them.

Check these other questions:

Editing a .class file directly, playing around with opcodes

Is it possible to view bytecode of Class file?

Programming in Java bytecode

Solution 5 - Java

Try use - dirtyJOE - Java Overall Editor is a complex editor and viewer for compiled java binaries (.class files).

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionAbhishek JainView Question on Stackoverflow
Solution 1 - JavaJesperView Answer on Stackoverflow
Solution 2 - JavaAndreas DolkView Answer on Stackoverflow
Solution 3 - JavaDaniel SperryView Answer on Stackoverflow
Solution 4 - JavaH-HView Answer on Stackoverflow
Solution 5 - JavaMusznikView Answer on Stackoverflow