JVM Languages
class.txt
Associated article: Inside Java Class Files
Tags: JVM Languages
Published source code accompanying the article by Matt Yourst in which he explores the class file format--the key to Java's binary portability. He then presents JavaDump, a program that documents structures in class files, and StripDebug, which removes extra debug information from classes. Also see INSIDEJC.ZIP.
Inside Java Class Files
by Matt T. Yourst
Listing One
[ltijavajavadumpjavadump.java]
package lti.java.javadump;
import java.io.*;
import lti.java.jcf.*;
public class javadump
{
public static void main(String args[]) throws Exception
{
// Open the class file.
FileInputStream fist = ...


