4

次のメソッドを使用して、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が終了するかどうかを気にしない状態を実現しようとしています。

4

1 に答える 1

5

はい、実際には、そのリフレクションプロセスを完全に実行する必要がありません。

別の仮想マシンで新しいプロセスを開始するには、ProcessBuilderを使用する必要があります。

何かのようなもの:

ProcessBuilder pb = new ProcessBuilder("java", "-jar",  f.getAbsolutePath());
Process p = pb.start();

編集

-pb.start()を実行するプログラムが終了した場合、それは機能しますか?

-java環境変数が設定されていない場合(Mac OS Xなど)は機能しますか?[macosxでテストできません]

します。このビデオを見てください:

http://img33.imageshack.us/img33/8380/capturadepantalla201001s.png

ソースコード(インポートは省略):

// MainApp.java

public class MainApp {
    public static void main( String [] args ) throws IOException {
        JFrame frame = new JFrame("MainApp");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add( new JLabel("<html><font size='48'>Main App Running</font><html>") );
        frame.pack();
        frame.setLocationRelativeTo( null );
        frame.setVisible( true );
        launchSeparateProcess();
        frame.addWindowListener( new WindowAdapter() {
            public void windowClosing( WindowEvent e ){
                System.out.println("MainAppp finished");
            }
        });
    }
    private static void launchSeparateProcess() throws IOException {
        File f = new File("./yourjar.jar");
        ProcessBuilder pb = new ProcessBuilder("java", "-jar", f.getAbsolutePath() );
        Process p = pb.start();
    }
}    

//-- Updater.jar
public class Updater {
    public static void main( String [] args ) {
        JFrame frame = new JFrame();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add( new JLabel("<html><font size='78'>Updating....</font></html>"));
        frame.pack();
        frame.setVisible(true);
    }
}
//--manifest.mf
Main-Class: Updater
于 2010-01-08T01:39:58.793 に答える