• 我的第一个Java程序:自动关机、取消自动关机程序


    这是我第一个Java程序,虽然之前学过Java,但没怎么实际应用过

    自动关机主要使用到两个命令

    // second为自定义秒数,为整数
    shutdown -s -t second
    // 取消自动关机
    shutdown -a

    以下是main函数

     1     public static void main(String[] args) throws IOException {
     2         // TODO Auto-generated method stub
     3         //    关机
     4         System.out.println("自动关机");
     5         System.out.println("输入秒数设置自动关机:");
     6         @SuppressWarnings("resource")
     7         Scanner input = new Scanner(System.in);
     8         String x = input.nextLine();
     9         Runtime.getRuntime().exec("shutdown -s -t " + x);
    10         System.out.println("将在"+x+"秒后自动关机");
    11         //    取消关机
    12 //        Runtime.getRuntime().exec("shutdown -a");
    13 //        System.out.println("取消关机");
    14     }
  • 相关阅读:
    Codeforces 878A
    Codeforces 873B-Balanced Substring
    codeforces 868C
    51nod 1402 最大值(贪心)
    最小正子段和 贪心
    codeforces 819B
    Codeforces 785D
    Codeforces 864E
    863D
    UVA 1380 A Scheduling Problem
  • 原文地址:https://www.cnblogs.com/misaki-workshop/p/13143962.html
Copyright © 2020-2023  润新知