1
私はjavaでこのpcをシャットダウンする簡単なコードを持っています。これをWindowsのスタートアップで実行するには何が追加できますか?実行Java起動アプリケーション[WINDOWS]
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();
}
}
}
起動時にシャットダウンしますか? – niceman
はいこれはトロールするだけです – NoOne
これはセットアッププログラムと関係がありますが、Windowsでタスクを作成することもできますが、他に選択肢はありません。 – niceman