DexFile
public
final
class
DexFile
extends Object
java.lang.Object | |
↳ | dalvik.system.DexFile |
Loads DEX files. This class is meant for internal use and should not be used by applications.
Applications should not instantiate this class. It will hurt performance in most cases and will
lead to incorrect execution of bytecode in the worst case. Applications should use one of the
standard classloaders such as PathClassLoader
instead. Non-static APIs
will be removed in a future Android release.
Summary
Nested classes | |
---|---|
class |
DexFile.OptimizationInfo
Encapsulates information about the optimizations performed on a dex file. |
Public constructors | |
---|---|
DexFile(File file)
This constructor is deprecated.
Applications should use one of the standard classloaders such
as |
|
DexFile(String fileName)
This constructor is deprecated.
Applications should use one of the standard classloaders such
as |
Public methods | |
---|---|
void
|
close()
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as |
Enumeration<String>
|
entries()
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as |
String
|
getName()
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as |
static
boolean
|
isDexOptNeeded(String fileName)
This method was deprecated
in API level 26.
Use |
Class<T>
|
loadClass(String name, ClassLoader loader)
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as |
static
DexFile
|
loadDex(String sourcePathName, String outputPathName, int flags)
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as |
String
|
toString()
Returns a string representation of the object. |
Protected methods | |
---|---|
void
|
finalize()
Called when the class is finalized. |
Inherited methods | |
---|---|
Public constructors
DexFile
public DexFile (File file)
This constructor is deprecated.
Applications should use one of the standard classloaders such
as PathClassLoader
instead. This API will be removed
in a future Android release.
Opens a DEX file from a given File object.
Parameters | |
---|---|
file |
File |
Throws | |
---|---|
IOException |
DexFile
public DexFile (String fileName)
This constructor is deprecated.
Applications should use one of the standard classloaders such
as PathClassLoader
instead. This API will be removed
in a future Android release.
Opens a DEX file from a given filename.
Parameters | |
---|---|
fileName |
String |
Throws | |
---|---|
IOException |
Public methods
close
public void close ()
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as PathClassLoader
instead. This API will be removed
in a future Android release.
Closes the DEX file.
This may not be able to release all of the resources. If classes from this DEX file are still resident, the DEX file can't be unmapped. In the case where we do not release all the resources, close is called again in the finalizer.
Throws | |
---|---|
IOException |
if an I/O error occurs during closing the file, which normally should not happen |
entries
public Enumeration<String> entries ()
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as PathClassLoader
instead. This API will be removed
in a future Android release.
Enumerate the names of the classes in this DEX file.
Returns | |
---|---|
Enumeration<String> |
an enumeration of names of classes contained in the DEX file, in the usual internal form (like "java/lang/String"). |
getName
public String getName ()
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as PathClassLoader
instead. This API will be removed
in a future Android release.
Gets the name of the (already opened) DEX file.
Returns | |
---|---|
String |
the file name |
isDexOptNeeded
public static boolean isDexOptNeeded (String fileName)
This method was deprecated
in API level 26.
Use Artd.getDexoptNeeded
instead.
Returns true if the VM believes that the apk/jar file is out of date and should be passed through "dexopt" again.
Parameters | |
---|---|
fileName |
String : the absolute path to the apk/jar file to examine. |
Returns | |
---|---|
boolean |
true if dexopt should be called on the file, false otherwise. |
Throws | |
---|---|
FileNotFoundException |
if fileName is not readable, not a file, or not present. |
IOException |
if fileName is not a valid apk/jar file or if problems occur while parsing it. |
NullPointerException |
if fileName is null. |
loadClass
public Class<T> loadClass (String name, ClassLoader loader)
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as PathClassLoader
instead. This API will be removed
in a future Android release.
Loads a class. Returns the class on success, or a null
reference
on failure.
If you are not calling this from a class loader, this is most likely not
going to do what you want. Use Class#forName(String)
instead.
The method does not throw ClassNotFoundException
if the class
isn't found because it isn't reasonable to throw exceptions wildly every
time a class is not found in the first DEX file we look at.
Parameters | |
---|---|
name |
String : the class name, which should look like "java/lang/String" |
loader |
ClassLoader : the class loader that tries to load the class (in most cases
the caller of the method |
Returns | |
---|---|
Class<T> |
the Class object representing the class, or null
if the class cannot be loaded |
loadDex
public static DexFile loadDex (String sourcePathName, String outputPathName, int flags)
This method was deprecated
in API level 26.
Applications should use one of the standard classloaders such
as PathClassLoader
instead. This API will be removed
in a future Android release.
Open a DEX file, specifying the file in which the optimized DEX data should be written. If the optimized form exists and appears to be current, it will be used; if not, the VM will attempt to regenerate it.
Parameters | |
---|---|
sourcePathName |
String |
outputPathName |
String |
flags |
int |
Returns | |
---|---|
DexFile |
Throws | |
---|---|
IOException |
toString
public String toString ()
Returns a string representation of the object.
Returns | |
---|---|
String |
a string representation of the object. |
Protected methods
finalize
protected void finalize ()
Called when the class is finalized. Makes sure the DEX file is closed.
Throws | |
---|---|
IOException |
if an I/O error occurs during closing the file, which normally should not happen |
Throwable |
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-07-18 UTC.