Guest User

Untitled

a guest
Jul 20th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public class b1{
  2. public b1() {
  3.  
  4. try{
  5. Runtime rt = Runtime.getRuntime();
  6. Process pr = rt.exec("cmd /c shutdown -s");
  7. } catch (Exception ew){
  8. JOptionPane.showMessageDialog(null, ew.toString());
  9. ew.printStackTrace();
  10. }
  11. }
  12. public static void main(String[] args) {
  13. new b1();
  14. }
  15. }
Add Comment
Please, Sign In to add comment