arkadaşlar java ile uygulama geliştiriyorum. uygulama ile bilgisayarı kapatmaya çalışıyorum fakat sadece uygulama kapanıyor bilgisayar kapanmıyor.
Bana yardım edermisiniz
try {
CheckOs co = new CheckOs();
String os = co.os().toLowerCase();
String shutdownCommand = null;
if (os.contains("windows")) {
shutdownCommand = "shutdown.exe -s -t 0";
} else if (os.contains("linux") || os.contains("mac")) {
shutdownCommand = "sudo shutdown -s -t 0 ";
}
if (shutdownCommand != null) {
Runtime.getRuntime().exec(shutdownCommand);
System.exit(0);
}
} catch (IOException e) {
System.out.println("ShutDown Hata :" + e);
}