在java中调用VB脚本
java配合vbs启动完成提醒
- 方式1:
String filePath=D:\\wellcom.vbs
Runtime.getRuntime().exec("cscript //NoLogo " + filePath);
- 方式2:
String filePath=D:\\wellcom.vbs
Runtime.getRuntime().exec("wscript.exe " + filePath);
- wellcom.vbs:
CreateObject("SAPI.SpVoice").speak"服务已启动"