我有一个小问题。
我正在开发Android应用程序。
在那里,您可以从其他应用程序(程序包)动态加载类。
首先,我不想“入侵”第三方应用程序,我想尝试为自己的应用程序构建插件。
那我有什么?
2个测试应用程序和1个包含在两个应用程序中的库。
因此,app1的代码:
package com.ftpsynctest.app1;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Type;
import android.app.Activity;
import android.content.pm.PackageManager.NameNotFoundException;
import android.os.Bundle;
import com.syncoorp.ftpsyncx.commons.SyncFile;
import dalvik.system.PathClassLoader;
public class App1Activity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
SyncFile f = new SyncFile("bla");
String classname = "com.ftpsynctest.app2.classcall";
String classpath = getApk("com.ftpsynctest.app1") + ":" + getApk("com.ftpsynctest.app2");
PathClassLoader myClassLoader = new dalvik.system.PathClassLoader(classpath, ClassLoader.getSystemClassLoader());
try {
Class c = Class.forName(classname, true, myClassLoader);
for (Method m : c.getDeclaredMethods()) {
System.out.println("Method: " + m.getName());
for (Type t : m.getGenericParameterTypes()) {
System.out.println(" - type: " + t.toString());
}
m.invoke(c.newInstance(), new Object[] {
new com.syncoorp.ftpsyncx.commons.SyncFile("bla")
});
break;
}
}
catch (ClassNotFoundException e) {e.printStackTrace();}
catch (IllegalArgumentException e) {e.printStackTrace();}
catch (IllegalAccessException e) {e.printStackTrace();}
catch (InvocationTargetException e) {e.printStackTrace();}
catch (InstantiationException e) {e.printStackTrace();}
}
private String getApk(String packageName) {
try { return this.getPackageManager().getApplicationInfo(packageName, 0).sourceDir;}
catch (NameNotFoundException e) {e.printStackTrace();}
return "";
}
}
所以我想创建类 com.ftpsynctest.app2.classcall 并调用方法修改的方法,参数类型为 com.syncoorp.ftpsyncx.commons.SyncFile 。
我的app2代码:
package com.ftpsynctest.app2;
import com.syncoorp.ftpsyncx.commons.SyncFile;
public class classcall {
public SyncFile modify(SyncFile file) {
file.change_date = 123;
return file;
}
}
我首先将app2安装到,将提供给app1这个类。
成功之后,我启动了app1。
我的输出:
01-10 22:21:48.804:INFO/System.out(4681):方法:修改
01-10 22:21:48.809:INFO/System.out(4681):-类型:类com.syncoorp.ftpsyncx.commons.SyncFile
因此,目前看来不错。找到的方法的参数类型为 com.syncoorp.ftpsyncx.commons.SyncFile
和我提供的是一样的。
但我收到以下错误:
java.lang.IllegalArgumentException: argument type mismatch
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.ftpsynctest.app1.App1Activity.onCreate(App1Activity.java:44)
at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1047)
at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1615)
at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
at android.app.ActivityThread.access$1500(ActivityThread.java:117)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:130)
at android.app.ActivityThread.main(ActivityThread.java:3691)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:907)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:665)
at dalvik.system.NativeStart.main(Native Method)
但为什么?我的输出告诉我这是SyncFile,我将SyncFile放入了invoke命令。
那里有什么问题?
可能是编译app2从SyncFile创建了一个与编译后的app1不同的类吗?如果是,为什么? SyncFile类是我的“公共(public)”库中两个项目共享的相同物理类。
有人有解决方案或答案吗?
最佳答案
在这种情况下,可能有两个名称相同的类SyncFile
对不同的类加载器可见。即使这些类在相同的程序包中被命名为完全相同,即使使用相同的字节码,它们也将被VM视为不同的类,因为它们来自不同的位置(类加载器)。
在运行时,类的身份由其包,名称和加载该类的类加载器实例定义。预期每个类只能由一个类加载器找到/加载。如果不是这种情况,则结果将根据访问该类时哪个类加载器生效而有所不同。new com.syncoorp.ftpsyncx.commons.SyncFile
可能会使用由应用程序的本地类加载器加载并与之关联的类,而被调用的方法则需要与myClassLoader
关联的版本。由于两个类加载器都知道“相同”类(由包+类名称标识),但是从JVM的角度来看,每个类仅知道其中一个,所以它们是两个不同的类。
您可以尝试通过SyncFile
加载的SyncFile
类的反射来创建myClassloader
实例,即
Class sfClass = Class.forName("com.syncoorp.ftpsyncx.commons.SyncFile", true, myClassLoader);
Object param = sfClass.newInstance("bla"); // param must be Object because the 'local' SyncFile is not the same as the SyncFile represented by sfClass!
请注意,在您的应用程序和``插件''交换它们都包含的任何类的实例的任何地方(即到处反射),您将遇到这个问题。考虑是否值得为之烦恼,或者您是否想采用更好的方法,例如IPC。