在调试模式下重新启动程序

时间:2013-06-22 23:20:27

标签: java exec debug-mode

我正在尝试使用此代码

在调试模式下重启java程序
public static final String SUN_JAVA_COMMAND = "sun.java.command";

public static void restartApplication() throws IOException 
{
    try 
    {
        String java = System.getProperty("java.home") + "/bin/java";
        final StringBuffer cmd = new StringBuffer("\"" + java + "\" ");
        String[] mainCommand = System.getProperty(SUN_JAVA_COMMAND).split(" ");

        if (mainCommand[0].endsWith(".jar")) 
        {
            cmd.append("-jar " + new File(mainCommand[0]).getPath());
        } 
        else 
        {
            cmd.append("-cp \"" + System.getProperty("java.class.path") + "\" " + mainCommand[0]);
        }

        cmd.append("");

        for (int i = 1; i < mainCommand.length; i++) 
        {
            cmd.append(" ");
            cmd.append(mainCommand[i]);
        }

        cmd.append(" -agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=8000");
        Runtime.getRuntime().exec(cmd.toString());
        System.exit(0);
    } 
    catch (Exception e) 
    {
        throw new IOException("Error while trying to restart the application", e);
    }
}

然而,每次应用程序从这个主要方法开始

public static void main(String[] args) throws Exception
{
    boolean isDebug = java.lang.management.ManagementFactory.getRuntimeMXBean().getInputArguments().toString().indexOf("-agentlib:jdwp") > 0;
    JOptionPane.showMessageDialog(null, isDebug);
    Utility.restartApplication();
}

joptionpane始终显示消息false为什么不工作

是isDebug中的问题还是重启应用程序;我认为问题是重启。

1 个答案:

答案 0 :(得分:0)

您的isDebug右侧似乎非常棘手,无法确定它是否有效。为什么不将它设置为true并测试调试器是否启动。之后,您知道它是isDebug评估还是调试器重启。