vote up 8 vote down star
3

Is there a way to shutdown a computer using a built-in Java function?

flag

This question reads like: Is there a way to peel potatoes with a spoon? I.e. wrong tool for the job... – Jon Grant Nov 3 '08 at 13:37
What exactly do you mean? – jjnguy Nov 3 '08 at 22:52

4 Answers

vote up 10 vote down check

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.

public static void main(String arg[]) throws IOException{
	Runtime runtime = Runtime.getRuntime();
	Process proc = runtime.exec("shutdown -s -t 0");
	System.exit(0);
}
link|flag
vote up 10 vote down

Here's another example that could work cross-platform:

public static void shutdown() throws RuntimeException, IOException {
    String shutdownCommand;
    String operatingSystem = System.getProperty("os.name");

    if ("Linux".equals(operatingSystem) || "Mac OS X".equals(operatingSystem)) {
        shutdownCommand = "shutdown -h now";
    }
    else if ("Windows".equals(operatingSystem)) {
        shutdownCommand = "shutdown.exe -s -t 0";
    }
    else {
        throw new RuntimeException("Unsupported operating system.");
    }

    Runtime.getRuntime().exec(shutdownCommand);
    System.exit(0);
}

The specific shutdown commands may require different paths or administrative privileges.

link|flag
vote up 0 vote down

You can use JNI to do it in whatever way you'd do it with C/C++.

link|flag
vote up 9 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.