Package classfile

This package contains Java code to read and display the contents of a Java Virtual Machine class file.

See:
          Description

Class Summary
classAttrSec The classAttrSec object contains the attribute table that ends the class file.
classDeclSec Read the JVM class file information that defines the class header.
classFieldSec Read the class field section and build representative classes.
classFile The classFile object contains the information from a single Java class file.
classFileHeader The classFileHeader contains the class file header information.
classMethodSec Read the class method section and build representative classes.
fieldInfo As described in the JVM Specification, the field_info is:
methodInfo The fields of the methodInfo structure are the same as those of the fieldInfo structure.
 

Package classfile Description

This package contains Java code to read and display the contents of a Java Virtual Machine class file. The package consists of a single .java file, classFile.java. This file contains Java objects which will read and store information for the various sections of the Java class file. An entire class file is read by allocating a classFile object and passing its constructor a DataInputStream reference for the class file to be read.

This package is part of the javad program which disassembles Java class files.

This software was written by Ian Kaplan and is copyrighted by Ian Kaplan, Bear Products International.

Although this software is published in source form, it is not open source software. See the copyright.