String[] Cmd = new String[]{"wscript", "vbs的路径"};
Process process = Runtime.getRuntime().exec(Cmd);
process.waitFor();
Java调用VBS
最新推荐文章于 2025-03-11 11:28:52 发布
String[] Cmd = new String[]{"wscript", "vbs的路径"};
Process process = Runtime.getRuntime().exec(Cmd);
process.waitFor();