Java启动应用程序[WINDOWS]

时间:2016-04-18 17:32:45

标签: java startup

我在java中有这个关闭pc的简单代码。我可以在Windows StartUp上添加什么来运行它?

import java.io.IOException;
import java.io.OutputStream;

public class Spegni {

public static void main(String[] args) {
    Runtime runtime = Runtime.getRuntime();
    try {
        Process process = runtime.exec("C:\\WINDOWS\\system32\\cmd.exe");
        OutputStream os = process.getOutputStream();
        os.write("shutdown -s -f -t 0\n\r".getBytes());
        os.close();
        try {
            process.waitFor();
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    } catch (IOException e) {
        e.printStackTrace();
    }
   }  
}

1 个答案:

答案 0 :(得分:0)

开始,运行:

shell:startup

然后将快捷方式放在那里。快乐的拖钓。