Possible Duplicate:
Shutting down a computer using Java
I am making a personal program that will shut down my computer after a certain amount of time or at a certain time/date. However, I am running multiple operating systems and want to do this with one simple Java program. Is there any way to send a system-independent machine shutdown request in Java without any using any external libraries? I know you can use java.awt.Desktop.getDesktop().browse(new URI("shutdown /s")); in Windows, but, again, I want system independence.
Runtime.exec()instead of browsing some url on the desktop that looks like a command line. – Greg Hewgill Dec 23 '11 at 5:24System.exit(0);shuts down the Java Virtual Machine no matter what the underlying platform is. – emory Dec 23 '11 at 5:38