Is there a way to shutdown a computer using a built-in Java function?
|
3
|
|||||
|
|
|
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. |
||
|
|
|
|
You can use JNI to do it in whatever way you'd do it with C/C++. |
||
|
|
|
|
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. |
||
|
|
