This week's book giveaway is in the General Computing forum.
We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line!
See this thread for details.
The moose likes Beginning Java and the fly likes How can i read bytecode ? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "How can i read bytecode ?" Watch "How can i read bytecode ?" New topic
Author

How can i read bytecode ?

Anto Telvin
Ranch Hand

Joined: Aug 12, 2008
Posts: 113
hi all
i got to know that after compilation compiler produces bytecode.can anyone tell how to read that bytecode ?


thanks


Anto Telvin Mathew<br />Many of the life failures are people who did not realize how close they were to success when they give up. EDISON
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35443
    
    9
You can use the "javap" tool to display byte code; its "-c" switch does that.

For better understanding, the JVM specification is helpful, as is this introductory article.


Android appsImageJ pluginsJava web charts
Anto Telvin
Ranch Hand

Joined: Aug 12, 2008
Posts: 113
thanks
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How can i read bytecode ?
 
Similar Threads
ByteCode
What is Byte code enhancement
JIT Compiler
Writing a JVM
Java is faster than C/C++ in mem. allocation