次のメソッドを使用して、jarファイル内のクラスを呼び出しています。
invokeClass("path.to.classfile", new String[] {});
public static void invokeClass(String name, String[] args) throws ClassNotFoundException, NoSuchMethodException, InvocationTargetException, MalformedURLException {
File f = new File(System.getProperty("user.home") + File.separator + ".myapplication"+File.separator+"myjar.jar");
URLClassLoader u = new URLClassLoader(new URL[]{f.toURI().toURL()});
Class c = u.loadClass(name);
Method m = c.getMethod("main", new Class[] { args.getClass() });
m.setAccessible(true);
int mods = m.getModifiers();
if (m.getReturnType() != void.class || !Modifier.isStatic(mods) || !Modifier.isPublic(mods)) {
throw new NoSuchMethodException("main");
}
try {
m.invoke(null, new Object[] { args });
} catch (IllegalAccessException e) {
}
}
別のプロセスでこれを呼び出すことは可能ですか?では、実行中のアプリケーションと新しく呼び出されたアプリケーションに共通点はありませんか?
状況:プログラムa(クライアントアップデーター)を起動します。クライアントaからプログラムb(クライアント)を起動します
現在のコードでは、プロジェクトaとプロジェクトbのすべてのインスタンスが同じヒープスペースを共有します。プロジェクトbのすべてのインスタンスがスタンドアロンであり、プロジェクトAが終了するかどうかを気にしない状態を実現しようとしています。