Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

running a vbs file from java

I have a VBS file test.vbs in C:/work/selenium/chrome/ and I want to run it from my Java program, so I tried this but with no luck:

public void test() throws InterruptedException {
   Runtime rt = Runtime.getRuntime();
   try {
      Runtime.getRuntime().exec( "C:/work/selenium/chrome/test.vbs" );
   }
   catch( IOException e ) {
      e.printStackTrace();
   }
}

If I try to run some exe file with this method it runs well, but when I try to run a VBS file it says "not a valid win32 application".

Any idea how to run a VBS file from Java?

like image 562
user1226162 Avatar asked Mar 05 '12 05:03

user1226162


2 Answers

public static void main(String[] args) {
   try {
      Runtime.getRuntime().exec( "wscript D:/Send_Mail_updated.vbs" );
   }
   catch( IOException e ) {
      System.out.println(e);
      System.exit(0);
   }
}

This is working fine where Send_Mail_updated.vbs is name of my VBS file

like image 165
A B Avatar answered Sep 23 '22 16:09

A B


A vbs-Script isn't natively executable like a bat, cmd or exe-Program. You have to start the interpreter (vbs.exe?) and hand your script over as a parameter:

String script = "C:\\work\\selenium\\chrome\\test.vbs";
// search for real path:
String executable = "C:\\windows\\...\\vbs.exe"; 
String cmdArr [] = {executable, script};
Runtime.getRuntime ().exec (cmdArr);
like image 42
user unknown Avatar answered Sep 22 '22 16:09

user unknown