Package org.apache.bcel.classfile
Class ClassParser
- java.lang.Object
-
- org.apache.bcel.classfile.ClassParser
-
public final class ClassParser extends java.lang.Object
Wrapper class that parses a given Java .class file. The method parse returns a JavaClass object on success. When an I/O error or an inconsistency occurs an appropiate exception is propagated back to the caller. The structure and the names comply, except for a few conveniences, exactly with the JVM specification 1.0. See this paper for further details about the structure of a bytecode file.
-
-
Constructor Summary
Constructors Constructor Description ClassParser(java.io.InputStream inputStream, java.lang.String fileName)
Parses class from the given stream.ClassParser(java.lang.String fileName)
Parses class from given .class file.ClassParser(java.lang.String zipFile, java.lang.String fileName)
Parses class from given .class file in a ZIP-archive
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description JavaClass
parse()
Parses the given Java class file and return an object that represents the contained data, i.e., constants, methods, fields and commands.
-
-
-
Constructor Detail
-
ClassParser
public ClassParser(java.io.InputStream inputStream, java.lang.String fileName)
Parses class from the given stream.- Parameters:
inputStream
- Input streamfileName
- File name
-
ClassParser
public ClassParser(java.lang.String fileName)
Parses class from given .class file.- Parameters:
fileName
- file name
-
ClassParser
public ClassParser(java.lang.String zipFile, java.lang.String fileName)
Parses class from given .class file in a ZIP-archive- Parameters:
zipFile
- zip file namefileName
- file name
-
-
Method Detail
-
parse
public JavaClass parse() throws java.io.IOException, ClassFormatException
Parses the given Java class file and return an object that represents the contained data, i.e., constants, methods, fields and commands. A ClassFormatException is raised, if the file is not a valid .class file. (This does not include verification of the byte code as it is performed by the java interpreter).- Returns:
- Class object representing the parsed class file
- Throws:
java.io.IOException
ClassFormatException
-
-