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?),这会起作用吗?[无法在 mac os x 上测试]

确实如此。看看这个视频:

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 回答