Class DexFileReader

java.lang.Object
com.googlecode.d2j.reader.DexFileReader
All Implemented Interfaces:
BaseDexFileReader

public class DexFileReader extends Object implements BaseDexFileReader
Open and read a dex file.this is the entrance of dex-reader. to read a dex/odex, use the following code:
 DexFileVisitor visitor = new xxxFileVisitor();
 DexFileReader reader = new DexFileReader(dexFile);
 reader.accept(visitor);