gpt4 book ai didi

java - 如何使用非通用参数调用方法(反射)?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:45:47 35 4
gpt4 key购买 nike

我有个小问题。我正在开发一个 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 并调用方法 modify带有 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 放入调用命令。那里有什么问题?编译 app2 是否可以从 SyncFile 创建一个与编译的 app1 不同的类?如果是,为什么? SyncFile 类是我的“公共(public)”库中两个项目共享的相同物理类。

有人有解决方案或答案吗?

最佳答案

在这种情况下,可能有两个相同名称的类 SyncFile 对不同的类加载器可见。即使类的名称完全相同,在同一个包中,即使具有相同的字节码,它们也会被 VM 视为不同类,因为它们来自不同的位置(类加载器)。

在运行时,类的身份由其包、名称​​和加载它的类加载器实例定义。预计每个类只能被恰好一个类加载器找到/加载。如果不是这种情况,则结果将根据访问类时生效的类加载器而有所不同。

new com.syncoorp.ftpsyncx.commons.SyncFile 可能会使用由应用程序的本地类加载器加载并关联的类,而被调用的方法需要与 myClassLoader 关联的版本>。由于两个类加载器都知道“相同”的类(由包+类名标识),但每个类加载器都只知道其中的一个,从 JVM 的角度来看,它们是两个不同的类。

您可以尝试通过 myClassloader 加载的 SyncFile 类的反射来创建您的 SyncFile 实例,即

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。

关于java - 如何使用非通用参数调用方法(反射)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8810977/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com