vote up 0 vote down star
1

Is there command to use on windows from java to make the computer sleep?

flag

60% accept rate
Removed the hibernate tag as it refers to the ORM. – Spencer Ruport Sep 2 at 17:41

4 Answers

vote up 3 vote down check

You can do it by executing a shell command, if you java app has enough rights to do so. The command is...

Runtime.getRuntime().exec("Rundll32.exe powrprof.dll,SetSuspendState Sleep");

That and other commands are shown here.

link|flag
1  
even though the OP accepted this as the answer, future readers should look at stackoverflow.com/questions/1369122/… also. – Trevor Harrison Sep 3 at 15:11
vote up 0 vote down

Anyone suggesting rundll32 should be shot, very few functions are designed to be called by rundll32 and SetSuspendState is not one of them. You will get random behavior (Hibernate vs Standby and Forced vs not forced etc) See this blog entry for more details.

link|flag
1  
why the hate for this answer? seems thoughtful and helpful. At least comment when you -1. – Trevor Harrison Sep 2 at 20:12
1  
after reading the blog entry, +1 from me. – Trevor Harrison Sep 2 at 20:13
OK. So the RunDLL32 process ends up with a corrupted stack after calling the function. Who cares? It can't 'infect' the parent process and by the time it occurs the function has already been called. – Jherico Sep 2 at 20:55
@Jherico: no, that's not the problem, the problem is, you will be calling SetSuspendState with UNKNOWN arguments, and since SetSuspendState will hibernate OR standby depending on the arguments, that's a bit of a problem – Anders Sep 2 at 21:28
1  
point taken. Well, there's always JNI – Jherico Sep 2 at 21:42
show 1 more comment
vote up 0 vote down

You may want to look at the OnNow/ACPI Support here.

There is also an old SO post that talks about it here. Probably the reverse of what you want. Might give you some clues though.

link|flag
vote up 0 vote down

No. You'd need to execute a separate binary via Runtime.exec().

This article suggests

rundll32 Powrprof.dll,SetSuspendState

but I've not tried it.

link|flag

Your Answer

Get an OpenID
or

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