Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's quite possible i've misunderstood the purpose of the File dir argument in Runtime.exec(String command, String[] envp, File dir): "The working directory of the new subprocess is specified by dir. If dir is null, the subprocess inherits the current working directory of the current process."

If I run Runtime.exec("C:/mydir/myfile.bat"); the script is executed (albeit with the wrong working dir)

however if I run Runtime.exec("myfile.bat", null, new File("C:/mydir")); i get the following error:

java.io.IOException: Cannot run program "myfile.bat" (in directory "C:\mydir"): CreateProcess error=2, The system cannot find the file specified
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:460)
    at java.lang.Runtime.exec(Runtime.java:593)

I would assume that the dir argument sets the working directory for the new process as well as the command being executed, however maybe it just does the former. if that is the case the exception message is quite misleading.

share|improve this question

2 Answers

up vote 1 down vote accepted

How about

Runtime.exec("C:\mydir\myfile.bat", null, new File("C:\mydir"));

From ProcessBuilder.java

// It's much easier for us to create a high-quality error
// message than the low-level C code which found the problem.

Thats why you get a non specific exception - otherwise the JDK would need to implement exception handling similar to Spring's DataAccessException hierarchy handling OS specific error codes.

Edit: you may want to look at commons-exec

share|improve this answer
yep i kind of knew this would be the only solution when writing the post... thanks for the link to commons-exec - i use just about every other commons project and didn't know about this one!? – pstanton Aug 19 '10 at 21:39

I do not know if it has something to do with it, but the \ is used to escape characters.

I always use forward slashes in Java and they are properly converted.

Otherwise I would recommend to always use \ i.e. double slashes to avoid mishaps like "C:\newfile" which would be C:-newline-ewfile.

share|improve this answer
oops sorry, those strings were coming from File.getAbsolutePath so my code was right (in that respect), my post was wrong.. edited. – pstanton Aug 19 '10 at 20:51

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.