程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> class-DexClassLoader讀不到jar文件求解!

class-DexClassLoader讀不到jar文件求解!

編輯:編程綜合問答
DexClassLoader讀不到jar文件求解!

我在第一個項目當中創建了一個com.example.interf包,裡面有接口ILoader ,又寫了一個方法JarLoader,並將兩個文件打成了dex以後的jar包存到SD卡下unit_jar_path+jarName路徑下
我又建了第二個項目將com.example.interf包以及下面的ILoader 接口的文件粘到新項目當中,又建了一個文件調用部分如下:
File jarPath = new File(unit_jar_path+jarName);
File dexOutputDir = context.getDir("dex", 0);
DexClassLoader cl = new DexClassLoader(jarPath.getAbsolutePath(), dexOutputDir.getAbsolutePath(),
null, ClassLoader.getSystemClassLoader());
Log.e("test", "cl:"+ cl +"\n");

Class<?> className = cl.loadClass("com.example.interf.JarLoader");
Log.e("test", "className:"+ className +"\n");//這裡有類名,找到了包下類名

ILoader loader = (ILoader)className.newInstance();
Log.e("test", "loader.sayHi():"+ loader.sayHi() +"\n");//這裡沒有執行並報錯???

現在能夠找到包下類名,卻找不到方法,打印不出Log.e("test", "loader.sayHi():"+ loader.sayHi() +"\n");這個日志,並且報
java.lang.ClassCastException: com.example.interf.JarLoader cannot be cast to com.example.impl.ILoader請問高手我哪裡做的有問題?

最佳回答:


我知道根源了!!問題已解決。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved