al.foruns 0 Denunciar post Postado Agosto 13, 2008 Olaa ... Qual Framework devo utilizar para criar programas para Desligar/ Reinicializar um computador usando Java ?? Desde já, Agradeço ... Aguardo Resposta ... Compartilhar este post Link para o post Compartilhar em outros sites
sublyer 0 Denunciar post Postado Agosto 14, 2008 Tenta Linux: public static void main(String[] args) { try { Runtime rt = Runtime.getRuntime(); Process child = rt.exec("shutdown -s"); InputStream in = child.getInputStream(); int c; while ((c = in.read()) != -1) { System.out.print((char)c); } in.close(); } catch (IOException e) { e.printStackTrace(); } } 1. Runtime.getRuntime().exec); Windows: public static void main(String[] args) { try { Runtime rt = Runtime.getRuntime(); Process child = rt.exec("rundll32.exe user.exe,ExitWindows"); InputStream in = child.getInputStream(); int c; while ((c = in.read()) != -1) { System.out.print((char)c); } in.close(); } catch (IOException e) { e.printStackTrace(); } } Flwww, grande abraço. Compartilhar este post Link para o post Compartilhar em outros sites