Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个应该在操作系统启动时运行的 Java 应用程序。 它在 Windows XP Professional 上运行,我添加了注册表项HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run并将其用作键值:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run
java -jar "C:\path\to\app.jar"
但这CommandPrompt会在启动时打开窗口! 如何在不打开命令提示符窗口的情况下在启动时运行我的应用程序?
CommandPrompt
谢谢
javaw -jar "C:\path\to\app.jar"
相关/重复
使用命令行参数启动 .jar 文件(但没有控制台窗口)
java和javaw的区别