我正在学习 java 中的 Runtime 类,并在其中测试命令行指令的使用。我正在尝试使用 Runtime.getRuntime().exec(...); 远程关闭计算机;当我运行它时,没有错误,但指定的机器没有关闭。我不知道为什么。
代码:
import java.io.IOException;
class shutdownVirus {
public static void main(String[] args) throws IOException {
Runtime.getRuntime().exec("shutdown -m \\\\T12-LEOPARDIJ -s -t 10");
}
}
任何帮助将不胜感激。谢谢