Android動態載入jar/dex

來源:互聯網
上載者:User

前言

   在目前的軟硬體環境下,Native App與Web App在使用者體驗上有著明顯的優勢,但在實際項目中有些會因為業務的頻繁變更而頻繁的升級用戶端,造成較差的使用者體驗,而這也恰恰是Web App的優勢。本文對網上Android動態載入jar的資料進行梳理和實踐在這裡與大家一起分享,試圖改善頻繁升級這一弊病。

 

聲明

  歡迎轉載,但請保留文章原始出處:) 

    部落格園:http://www.cnblogs.com

    農民伯伯: http://over140.cnblogs.com  

    Android中文翻譯組:http://androidbox.sinaapp.com/

 

本文

  一、 基本概念和注意點

    1.1  首先需要瞭解一點:在Android中可以動態載入,但無法像Java中那樣方便動態載入jar

      原因:Android的虛擬機器(Dalvik VM)是不認識Java打出jar的byte code,需要通過dx工具來最佳化轉換成Dalvik byte code才行。這一點在咱們Android項目打包的apk中可以看出:引入其他Jar的內容都被打包進了classes.dex。

      所以這條路不通,請大家注意。

 

    1.2  當前哪些API可用於動態載入

      1.2.1  DexClassLoader

        這個可以載入jar/apk/dex,也可以從SD卡中載入,也是本文的重點。

      1.2.3  PathClassLoader  

        只能載入已經安裝到Android系統中的apk檔案。

 

  二、 準備

    本文主要參考"四、參考文章"中第一篇文章,補充細節和實踐過程。

    2.1  下載開源項目

      http://code.google.com/p/goodev-demo

      將項目匯入工程,工程報錯的話應該是少了gen檔案夾,手動添加即可。注意這個例子是從網上下載最佳化好的jar(已經最佳化成dex然後再打包成的jar)到本地檔案系統,然後再從本地檔案系統載入並調用的。本文則直接改成從SD卡載入。

 

  三、實踐

    3.1  編寫介面和實現

      3.1.1  介面IDynamic

package com.dynamic;

public interface IDynamic {
    public String helloWorld();
}

       3.1.2  實作類別DynamicTest

package com.dynamic;

public class DynamicTest implements IDynamic {

    @Override
    public String helloWorld() {
        return "Hello World!";
    }
}

 

    3.2  打包並轉成dex

      3.2.1  選中工程,常規流程匯出即可,

      注意:在實踐中發現,自己建立一個Java工程然後匯出jar是無法使用的,這一點大家可以根據文章一來瞭解相關原因,也是本文的重點之一。這裡打包匯出為dynamic.jar

      (後期修複:打包請不要把介面檔案打進來,參見文章末尾後續維護!)

      3.2.2  將打包好的jar拷貝到SDK安裝目錄android-sdk-windows\platform-tools下,DOS進入這個目錄,執行命名:

dx --dex --output=test.jar dynamic.jar

 

    3.3  修改調用例子

      修改MainActivity,如下:

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        mToastButton = (Button) findViewById(R.id.toast_button);
        
        // Before the secondary dex file can be processed by the DexClassLoader,
        // it has to be first copied from asset resource to a storage location.
//        final File dexInternalStoragePath = new File(getDir("dex", Context.MODE_PRIVATE),SECONDARY_DEX_NAME);
//        if (!dexInternalStoragePath.exists()) {
//            mProgressDialog = ProgressDialog.show(this,
//                    getResources().getString(R.string.diag_title), 
//                    getResources().getString(R.string.diag_message), true, false);
//            // Perform the file copying in an AsyncTask.
//            // 從網路下載需要的dex檔案
//            (new PrepareDexTask()).execute(dexInternalStoragePath);
//        } else {
//            mToastButton.setEnabled(true);
//        }
        
        mToastButton.setOnClickListener(new View.OnClickListener() {
            public void onClick(View view) {
                // Internal storage where the DexClassLoader writes the optimized dex file to.
                //final File optimizedDexOutputPath = getDir("outdex", Context.MODE_PRIVATE);
                final File optimizedDexOutputPath = new File(Environment.getExternalStorageDirectory().toString()
                    + File.separator + "test.jar");
                // Initialize the class loader with the secondary dex file.
//                DexClassLoader cl = new DexClassLoader(dexInternalStoragePath.getAbsolutePath(),
//                        optimizedDexOutputPath.getAbsolutePath(),
//                        null,
//                        getClassLoader());
                DexClassLoader cl = new DexClassLoader(optimizedDexOutputPath.getAbsolutePath(),
                    Environment.getExternalStorageDirectory().toString(), null, getClassLoader());
                Class libProviderClazz = null;
                
                try {
                    // Load the library class from the class loader.
                    // 載入從網路上下載的類
//                    libProviderClazz = cl.loadClass("com.example.dex.lib.LibraryProvider");
                    libProviderClazz = cl.loadClass("com.dynamic.DynamicTest");
                    
                    // Cast the return object to the library interface so that the
                    // caller can directly invoke methods in the interface.
                    // Alternatively, the caller can invoke methods through reflection,
                    // which is more verbose and slow.
                    //LibraryInterface lib = (LibraryInterface) libProviderClazz.newInstance();
                    IDynamic lib = (IDynamic)libProviderClazz.newInstance();
                    
                    // Display the toast!
                    //lib.showAwesomeToast(view.getContext(), "hello 世界!");
                    Toast.makeText(MainActivity.this, lib.helloWorld(), Toast.LENGTH_SHORT).show();
                } catch (Exception exception) {
                    // Handle exception gracefully here.
                    exception.printStackTrace();
                }
            }
        });
    }

 

    3.4  執行結果

     

 

  四、參考文章

    [推薦]在Android中動態載入自訂類

    Android app中載入jar外掛程式

    關於Android的ClassLoader探索

    Android App 如何動態載入類

 

  五、補充

    大家可以看看DexClassLoader的API文檔,裡面不提倡從SD卡載入,不安全。此外,我也正在組織翻譯組儘快把這個命名空間下的幾個類都翻譯出來,以供大家參考。

    工程下載:這裡,Dex檔案下載:這裡。大家可以直接把Dex檔案拷貝到SD卡,然後運行例子。

 

  六、後期維護

    6.1  2011-12-1  修複本文錯誤

      感謝網友ppp250和liuzhaocn的反饋,基本按照評論2來修改:

      6.1.1  不需要在本工程裡面匯出jar,自己建立一個Java工程然後匯出來也行。

      6.1.2  匯出jar時不能帶介面檔案,否則會報以下錯:

         java.lang.IllegalAccessError: Class ref in pre-verified class resolved to unexpected implementation

      6.1.3  將jar最佳化時應該重新成jar(jar->dex->jar),如果如下命令:

      dx --dex --output=test.jar dynamic.jar

 

    6.2  2012-3-29  本文升級版:

      Android應用開發提高系列(4)——Android動態載入(上)——載入未安裝APK中的類

      請大家參照最新的文章來做動態載入!

 

結束

  除了翻譯組的工作和自己本職的工作以外,很難抽時間出來分享一些開發心得,但正所謂擠擠總是有的,歡迎交流!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.