gpt4 book ai didi

java - 从控制台/命令窗口断开 java 应用程序

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:36:32 24 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Is there a way to the hide win32 launch console from a Java program (if possible without JNI)

当我在 Windows 上的批处理文件中运行我的 java swing 应用程序时,控制台/命令窗口在我的 java 应用程序运行时保持打开状态。这会在我的任务栏上创建一个我不希望有的额外窗口。但是当我关闭命令窗口时,它会停止我的 java 应用程序。有没有办法,也许通过批处理文件或命令行参数或对我的应用程序的代码更改,在启动我的 swing 应用程序后退出 java.exe 并在我的应用程序仍在运行时关闭控制台窗口?

主要方法如下:

public static void main(String args[]) {

ApplContext applContext = new ApplContext();
Throwable error = null;

try {
applContext.setUserConfigDir(args.length>0 ? args[0] : null);
applContext.loadData();
ApplTools.initLookAndFeel(Parameters.P_NIMBUS_LAF.of(applContext.getParameters()));
} catch (Throwable e) {
error = e;
}

// JWorkSheet is a JFrame.
new JWorkSheet(applContext, error).setVisible();
}

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com