0

このコードを使用してデバッグモードで 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);
    }
}

ただし、アプリケーションがこの main メソッドから起動するたびに

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 にあるのか、アプリケーションの再起動にあるのか。問題は再起動だと思います。

4

1 に答える 1

0

あなたのisDebug右側は十分にトリッキーなようで、うまくいくかどうか確信が持てません。trueに設定して、デバッガーが起動するかどうかをテストしてみませんか。その後、それがisDebug評価なのかデバッガーの再起動なのかがわかります。

于 2013-06-22T23:32:13.553 に答える