vote up 0 vote down star

Hi, Really simple little function, but does anyone know how to sleep OS X from Java?

Cheers

flag

3 Answers

vote up 2 vote down

See: Making Mac OS X sleep from the command line

Create a script with the following:

#!/bin/bash
osascript << EOT
tell application "System Events"
     sleep
end
EOT

And use system to exec it.

link|flag
Sorry could you give the java code for that? – Dawson Jun 10 at 21:10
vote up 2 vote down
System.exec("osascript -e 'tell application \"System Events\" to sleep'");
link|flag
vote up -1 vote down
    
public void gotoSleep(){
    try{
        logger.finer("Zzz...");

        if (preferences.getOS().equals("OSX") == true ){
    	Process p = Runtime.getRuntime().exec
    	    ("/bin/bash");
    	String command = "osascript -e 'tell application \"System Events\"' " 
    	    + " -e \"sleep\" -e 'end tell'";

    	OutputStream stdin = p.getOutputStream();
    	stdin.write( command.getBytes() );
    	stdin.flush();
    	stdin.close();
        }

    }catch( Exception e ) { 
        logger.warning( e.toString() );
    }
}

For Some reason while i was doing it it did not work without executing it through bash.

link|flag

Your Answer

Get an OpenID
or

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