Is there a way to shutdown a computer using a built-in Java method?
|
Create your own function to execute an OS command through the command line? For the sake of an example. But know where and why you'd want to use this as others note.
|
|||||||||||
|
|
Here's another example that could work cross-platform:
The specific shutdown commands may require different paths or administrative privileges. |
|||
|
|
The quick answer is no. The only way to do it is by invoking the OS-specific commands that will cause the computer to shutdown, assuming your application has the necessary privileges to do it. This is inherently non-portable, so you'd need either to know where your application will run or have different methods for different OSs and detect which one to use. |
|||
|
|
|
I use this program to shutdown the computer in X minutes.
|
|||
|
|
|
Here is an example using Apache Commons Lang's SystemUtils:
This method takes into account a whole lot more operating systems than any of the above answers. It also looks a lot nicer and is more reliable then checking the Edit: It now has the option for the user to enter a delay if they like! |
||||
|
|
|
Better use .startsWith than use .equals ...
work fine Ra. |
|||||
|
|
On Windows Embedded by default there is no shutdown command in cmd. In such case you need add this command manually or use function ExitWindowsEx from win32 (user32.lib) by using JNA (if you want more Java) or JNI (if easier for you will be to set priviliges in C code). |
||||
|
|
protected by Community♦ Jun 20 '12 at 19:44
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.