首页 > 代码库 > Android-找到包下面所有的类

Android-找到包下面所有的类

Android 利用反射找到包下面所有的类

Android下其实有一个DexFile的东西,利用它我们可以很好的找到包下面所有的类

什么是DexFile?

官方的说明是这样的:

Manipulates DEX files. The class is similar in principle to ZipFile. It is used primarily by class loaders.

Note we don‘t directly open and read the DEX file here. They‘re memory-mapped read-only by the VM.

 

直接上代码:

技术分享

下面是使用:

技术分享

Android-找到包下面所有的类