有没有一种使用内置Java方法关闭计算机的方法?
创建自己的函数以通过命令行执行OS 命令?
为了举例。但是要知道,在其他地方以及为什么要使用它。
public static void main(String arg[]) throws IOException{ Runtime runtime = Runtime.getRuntime(); Process proc = runtime.exec("shutdown -s -t 0"); System.exit(0); }