java中编写cmd命令并执行

来源:互联网 发布:学汉字软件 编辑:程序博客网 时间:2024/06/06 14:01

Process process = Runtime.getRuntime().exec(cmd);

process.waitFor();



0 0