blob: 3d9f7494f23552f6c49ddd27eb6e03c98b20d356 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
/*
* Javassist, a Java-bytecode translator toolkit.
* Copyright (C) 1999-2003 Shigeru Chiba. All Rights Reserved.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*/
package javassist;
import java.io.*;
import javassist.bytecode.ClassFile;
import javassist.bytecode.ClassFileWriter;
/**
* Dump is a tool for viewing the class definition in the given
* class file. Unlike the JDK javap tool, Dump works even if
* the class file is broken.
*
* <p>For example,
* <ul><pre>% java javassist.Dump foo.class</pre></ul>
*
* <p>prints the contents of the constant pool and the list of methods
* and fields.
*/
public class Dump {
private Dump() {}
/**
* Main method.
*
* @param args[0] class file name.
*/
public static void main(String[] args) throws Exception {
if (args.length != 1) {
System.err.println("Usage: java Dump <class file name>");
return;
}
DataInputStream in = new DataInputStream(
new FileInputStream(args[0]));
ClassFile w = new ClassFile(in);
PrintWriter out = new PrintWriter(System.out, true);
out.println("*** constant pool ***");
w.getConstPool().print(out);
out.println();
out.println("*** members ***");
ClassFileWriter.print(w, out);
}
}
|