91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Android之BaseDexClassLoader如何使用

發布時間:2022-08-10 14:11:19 來源:億速云 閱讀:125 作者:iii 欄目:開發技術

本篇內容介紹了“Android之BaseDexClassLoader如何使用”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

前言

一共有4個參數,分來來講。

1:dexFile(String類型)
2:optimizedDirectory(File類型)
3:librarySearchPath(String類型)
4:parent(ClassLoader類型)

一.dexPath(String)

官方的注釋:

     * @param dexPath the list of jar/apk files containing classes and
     * resources, delimited by {@code File.pathSeparator}, which
     * defaults to {@code ":"} on Android.

包含類和類的jar/apk文件列表資源,由{@code File.pathSeparator}分隔,其中Android上的默認值為{@code”:“}。

也就是說這里其實是可以傳入一個集合的。

比如如下的參數都是可以被接受的:

sdcard/test/aa.apk

sdcard/test/aa.apk:sdcard/test/bb.apk:sdcard/test/cc.apk

sdcard/test/aa.apk:sdcard/test/dd.jar

其中分隔符:,保險起見,可以使用File.pathSeparator替代。

示例代碼如下:

private void loadDex(List<File> apkList) {
        StringBuilder builder = new StringBuilder();
        for (File f : apkList) {
            builder.append(f.getAbsolutePath());
            builder.append(File.separatorChar);
        }
        DexClassLoader dexClassLoader = new DexClassLoader(builder.toString(), null, null, getClass().getClassLoader());
    }

二.optimizedDirectory

官方的注釋:

this parameter is deprecated and has no effect since API level 26.

解壓的路徑,這里傳入路徑的最主要目的就是為了生成odex文件夾,方便后續存儲odex文件。

如注釋中所寫,這個參數26開始已經失效了。所以這里就不擴展去講了。

三.librarySearchPath

官方的注釋:

 * @param librarySearchPath the list of directories containing native

包含native目錄的目錄列表,這里要注意的,傳入的一定是so的上一級目錄才可以。如果是更上一層的目錄是不行的。前言中的問題就出在這,傳入了一個更上一層的目錄地址。

排查流程:

最終使用librarySearchPath的地方是在DexPathList的splitPaths方法中。生成File加入List中:

@UnsupportedAppUsage
    private static List<File> splitPaths(String searchPath, boolean directoriesOnly) {
        List<File> result = new ArrayList<>();
        if (searchPath != null) {
            for (String path : searchPath.split(File.pathSeparator)) {
                ...
                result.add(new File(path));
            }
        }
        return result;
    }

而使用的時候,是使用了findLibrary的方法,for循環便利上面集合中的所有path,看是否存在。

public String findLibrary(String libraryName) {
        String fileName = System.mapLibraryName(libraryName);
        for (NativeLibraryElement element : nativeLibraryPathElements) {
            String path = element.findNativeLibrary(fileName);
            if (path != null) {
                return path;
            }
        }
        return null;
    }

而尋找的最終會調用到NativeLibraryElement的findNativeLibrary方法:

public String findNativeLibrary(String name) {
            maybeInit();
            if (zipDir == null) {
                String entryPath = new File(path, name).getPath();
                if (IoUtils.canOpenReadOnly(entryPath)) {
                    return entryPath;
                }
            } else if (urlHandler != null) {
                // Having a urlHandler means the element has a zip file.
                // In this case Android supports loading the library iff
                // it is stored in the zip uncompressed.
                String entryName = zipDir + '/' + name;
                if (urlHandler.isEntryStored(entryName)) {
                  return path.getPath() + zipSeparator + entryName;
                }
            }
            return null;
        }

這段代碼也就是問題的核心了,直接使用了new File(path,name)的方式,而不是循環查找,所以只有上一層才可以。

四.parent

官方的注釋:

@param parent the parent class loader

這個比較簡單,就是上一層的classLoader。

“Android之BaseDexClassLoader如何使用”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

德化县| 林芝县| 辰溪县| 章丘市| 台湾省| 凤阳县| 永靖县| 梁平县| 永济市| 石屏县| 宾川县| 公安县| 泽库县| 巴塘县| 苏尼特右旗| 兴和县| 宁国市| 布拖县| 佛学| 丽水市| 琼海市| 桐梓县| 三江| 万山特区| 庆元县| 柳河县| 明光市| 铜梁县| 上饶市| 长兴县| 额济纳旗| 榆树市| 永和县| 祁连县| 十堰市| 东乌珠穆沁旗| 扬中市| 龙门县| 油尖旺区| 罗源县| 陆河县|