簡體   English   中英

來自jar文件的android加載類

[英]android load class from jar file

我編寫了一個Java類加載器來從.jar文件加載類。

但是,當我加載一個類時,我得到一個ClassNotFoundException .jar文件位於文件夾資產中。 在操作之前,我將.jar文件復制到另一個目錄中。

為什么會發生這種情況?如何從jar文件中加載類?

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    this.requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.main);
    try {
        final File dexInternalStoragePath = new File(getDir("lib", Context.MODE_PRIVATE), SECONDARY_DEX_NAME);
        (new PrepareDexTask()).execute(dexInternalStoragePath);
        if (dexInternalStoragePath.exists()) {
            final File optimizedDexOutputPath = getDir("outdex", Context.MODE_PRIVATE);

            DexClassLoader cl = new DexClassLoader(dexInternalStoragePath.getAbsolutePath(),
                    optimizedDexOutputPath.getAbsolutePath(), null, getClassLoader());
            try {
                JarFile jarFile = new JarFile(dexInternalStoragePath.getAbsolutePath());
                Enumeration<?> e = jarFile.entries();

                URL[] urls = { new URL("jar:file:" + dexInternalStoragePath.getAbsolutePath() + "!/") };
                URLClassLoader cl1 = URLClassLoader.newInstance(urls);

                while (e.hasMoreElements()) {
                    JarEntry je = (JarEntry) e.nextElement();
                    if (je.isDirectory() || !je.getName().endsWith(".class")) {
                        continue;
                    }
                    String className = je.getName().substring(0, je.getName().length() - 6);
                    className = className.replace('/', '.');
                    if (className.equals("com.common.lvl.LibraryProvider")) {
                        LibraryInterface lib = (LibraryInterface) Class.forName(className, true,  cl1).newInstance();
                        //Class<?> libProviderClazz = cl1.loadClass(className);
                        //LibraryInterface lib = (LibraryInterface) libProviderClazz.newInstance();
                        lib.CheckLVL(this, "hello");
                    }
                }

                // Class<?> libProviderClazz =
                // cl.loadClass("com.common.lvl.LibraryProvider");
                // LibraryInterface lib = (LibraryInterface)
                // libProviderClazz.newInstance();
                // lib.CheckLVL(this, "hello");
            } catch (Exception ex) {
                Logger.Instance().WriteLine(this, ex.getMessage());
            }
        }
    } catch (Exception ex) {

    }
}

private boolean prepareDex(File dexInternalStoragePath) {
    BufferedInputStream bis = null;
    OutputStream dexWriter = null;

    try {
        bis = new BufferedInputStream(getAssets().open(SECONDARY_DEX_NAME));
        dexWriter = new BufferedOutputStream(new FileOutputStream(dexInternalStoragePath));
        byte[] buf = new byte[BUF_SIZE];
        int len;
        while ((len = bis.read(buf, 0, BUF_SIZE)) > 0) {
            dexWriter.write(buf, 0, len);
        }
        dexWriter.close();
        bis.close();
        return true;
    } catch (IOException e) {
        if (dexWriter != null) {
            try {
                dexWriter.close();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            }
        }
        if (bis != null) {
            try {
                bis.close();
            } catch (IOException ioe) {
                ioe.printStackTrace();
            }
        }
        return false;
    }
}

private class PrepareDexTask extends AsyncTask<File, Void, Boolean> {

    @Override
    protected void onCancelled() {
        super.onCancelled();
    }

    @Override
    protected void onPostExecute(Boolean result) {
        super.onPostExecute(result);
    }

    @Override
    protected Boolean doInBackground(File... dexInternalStoragePaths) {
        prepareDex(dexInternalStoragePaths[0]);
        return null;
    }
}

添加你的jar文件,如下所示

轉到 - > eclipse中的項目屬性 - > java build path - > Libraries - > Add External Jar ,並瀏覽並找到你的jar文件。

在此輸入圖像描述

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM