Jump to content

Recommended Posts

Posted

public static void runScript() throws Exception { 
        
        try { 
            
            ProcessBuilder pb = new ProcessBuilder("C:\\Program Files (x86)\\AutoIt3\\AutoIt3.exe\"", "\"C:\\Users\\Cameron\\workspace\\truecryptgui.au3\"");
             Process p = pb.start();
            
                
             System.out.println("Script executed, TrueCrypt volume created!");
        }
        catch (IOException e) { 
                System.out.println("exception happened - here's what I know: ");
                e.printStackTrace();
                System.exit(-1);
        }
        
    }

This is what I have right now, it prompts me with a window to select truecryptgui.au3 manually, however if I run from the cmd ->

"C:Program Files (x86)AutoIt3AutoIt3.exe" "C:UsersCameronworkspacetruecryptgui.au3" 

it functions automatically how I'd like it to.

Does anybody know what I'm missing in my Java code to get this to perform correctly?

Posted

Remove the escaped quotation mark from just after AutoIt3.exe, or add another before C:. Your escaped quotes are imbalanced. Other than that, I don't see a problem. I tried your example after fixing the quotes, and it ran an AutoIt script just fine. What's the output when you run from the console?

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...