String[] Cmd = new String[]{"wscript", "vbs的路径"};
Process process = Runtime.getRuntime().exec(Cmd);
process.waitFor();
Java调用VBS
最新推荐文章于 2024-06-29 02:59:15 发布
String[] Cmd = new String[]{"wscript", "vbs的路径"};
Process process = Runtime.getRuntime().exec(Cmd);
process.waitFor();