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

What kind of problem(s) could cause Java's ProcessBuilder.start method to return an IOException with a note saying error=5?

Specifically, we've seen a remote customer system running some Java code along the lines of...

ProcessBuilder pb = new ProcessBuilder(cmdArray);
pb.redirectErrorStream(true);
Process p = pb.start();

...throw exceptions like this...

java.io.IOException: CreateProcess: C:\example\example.exe argument1 argument2 error=5
at java.lang.ProcessImpl.create(Native Method)
at java.lang.ProcessImpl.<init>(Unknown Source)
at java.lang.ProcessImpl.start(Unknown Source)
at java.lang.ProcessBuilder.start(Unknown Source)
at example_code_above

We have confirmed that the command noted in the exception, "C:\example\example.exe argument1 argument2" can be run successfully by hand via cmd.exe, so we are confident the command itself is not broken.

share|improve this question
2  
May be error 5 is for "Access Denied". (Not sure) – Harry Joy Jul 13 '11 at 5:30

2 Answers

up vote 4 down vote accepted

error=5 means one of:

1) file is not executable
2) file is not accessible

EDIT: wont throw exception
3) the command (example.exe) exits with exit code 5

share|improve this answer
Thanks - Can you tell me where that information is available for future reference? – Matt Sheppard Jul 13 '11 at 5:55
Windows predefined exit codes and a little bit of experimenting with ProcessBuilder for various cases – Op De Cirkel Jul 13 '11 at 6:03
I had this error on Windows 7 too. The reason ? Basically, I have tried to execute a folder rather than an executable :\ Dumb error – Alex Nov 27 '11 at 19:09

I too faced a similar problem. The file, exe or bat should not be read only.

share|improve this answer

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.