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.
可能重复: 有什么方法可以“重启”JVM?
是否有任何选项可以通过该程序内部的代码重新启动当前正在执行的.jar(一个完整的项目)
您可以调用使用Runtime.getRuntime().exec()
Runtime.getRuntime().exec()
java -jar yourJar.jar
你可以立即调用
System.exit(0);
所以启动新实例并停止当前