Top "Javap" questions

javap - The Java Class File Disassembler

How do I print the class structures in a jar file using the javap tool?

I want to list the methods of the class files in the jar using the javap tool. How do I …

java command-line javap
Understanding javap's output for the Constant Pool

When running javap on a very simple HelloWorld application I have some confusion on the output around the constant pool. …

java java-bytecode-asm javap
Java : javap ERROR:Could not find .class

In my system(Ubuntu 10.04) java is running fine but I am not able to run javap command I have complile …

java javap
Is there a disassembler + debugger for java (ala OllyDbg / SoftICE for assembler)?

Is there a utility similar to OllyDbg / SoftICE for java? I.e. execute class (from jar / with class path) and, …

java debugging system disassembly javap
What does "p" in "javap" stand for?

What does "p" in "javap" stand for? (The "c" in "javac" stands for compiler)

java javap
Where is jar for java.io.File?

When I need to get method signatures for android.content.ContextWrapper, I go to "C:\Program Files (x86)\Android\android-sdk\…

java android javap
How to use javap with eclipse?

As the title states, I'm trying to use javap with eclipse but have difficulties setting it up. I'm trying to …

java eclipse javap
Constructor Inside Inner Static Class in java?

I Wrote the following Code public class Reader1 { private int pageNumber; private class ReaderName1{ public int getPage(){ return pageNumber; } } static …

java oop javap
Add tools.jar in the classpath of sbt project

The ':javap' command in the scala 2.9.1 console need the tools.jar (from JDK6) in the 'classpath'. From cmd-line it …

scala sbt scala-2.9 javap tools.jar