我需要一个 Android 应用程序,它应该能够从网络(可能是 .apk 或 .jar)获取数据并从中启动“某些东西”。
如果它是一个“微不足道”的课程,那根本没有问题。这是我的装载机
package com.m31.android.urlload;
import java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.ClassLoader;
import java.net.URL;
import dalvik.system.PathClassLoader;
import dalvik.system.DexClassLoader;
public class Loader extends ClassLoader {
public Loader() throws IOException {
super(Loader.class.getClassLoader());
}
public Class loadClass(String className) throws ClassNotFoundException {
return findClass(className);
}
private String fetch_package(String url) throws IOException {
BufferedInputStream in = new BufferedInputStream(new URL(url).openStream());
FileOutputStream fos = new FileOutputStream("/mnt/sdcard/_plugins/plugin1.jar");
BufferedOutputStream bout = new BufferedOutputStream(fos,1024);
byte data[] = new byte[1024];
int count;
while((count = in.read(data,0,1024)) > 0) {
bout.write(data,0,count);
}
bout.close();
in.close();
return "/mnt/sdcard/_plugins/plugin1.jar";
}
public Class findMyClass(String className, String url) throws IOException, ClassNotFoundException {
String path = fetch_package(url);
DexClassLoader pcl = new DexClassLoader(path, "/mnt/sdcard/_dex/", null, this);
return pcl.loadClass(className);
}
}
问题是我要执行的代码看起来很像一个应用程序,它应该有一个“简单”的视图和一些交互。
我无法调用我下载的类的“onCreate”方法。
我想我有三个街道:
- 我寻找一种静默安装应用程序然后运行它的方法(可能吗?);
- 在您的帮助下,我了解如何在我自己的应用程序中初始化第二个“应用程序”(使用它自己的 R 和所有东西);
- 我编写我的主程序来从 Web 获取数据并动态构建页面。
所以,我绝对需要你的帮助!