gpt4 book ai didi

java - 关闭电脑

转载 作者:行者123 更新时间:2023-12-01 04:40:06 27 4
gpt4 key购买 nike

有没有办法使用内置的 Java 方法关闭计算机?

最佳答案

创建您自己的函数以通过 command line 执行操作系统命令?

举个例子。但正如其他人指出的那样,知道您想要在何处以及为何使用它。

public static void main(String arg[]) throws IOException{
Runtime runtime = Runtime.getRuntime();
Process proc = runtime.exec("shutdown -s -t 0");
System.exit(0);
}

关于java - 关闭电脑,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16701373/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com