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.
大多数 Eclipse 应用程序的菜单中都有 File -> Restart。是否可以在 Windows 中使用一些 bat 脚本重新启动应用程序?
尝试以下操作:
杀死eclipse进程
taskkill /im eclipse.exe
等待几秒钟,直到进程终止
sleep 10
启动eclipse应用程序
start "C:\eclipse\eclipse.exe"
不,如果没有不良的副作用,这通常是不可能的。重启 Eclipse 的代码是几百行 Java 代码,用所有正确的设置小心地创建了一个新的虚拟机进程。