vote up 2 vote down star

I have a Java application that launches an external process (Internet Explorer) using ProcessBuilder. Strangely enough, this child process freezes when the parent Java thread calls Thread.sleep. It does not happen with all processes, for instance Firefox, but with IE it happens all the time.

Any ideas ?

P.S. I tried Robot.delay() with the same effect

flag

60% accept rate

1 Answer

vote up 5 vote down check

How are you consuming the child process stdout and stderr ? It may be worth posting your code.

You need to consume the output streams concurrently, otherwise either your stdout or stderr buffer will fill up, and your child process will block. See here for more details.

link|flag
I'm not. I did not know I have to as IE does not use stdin/stdout, but I will try your suggestion anyway. – Demiurg Sep 24 at 19:54
Definitely try it. I got hit by a similar thing years ago with an app I also assumed didn't do anything with stdin/stdout; you still had to use StreamGobbler or like means to make it work. – M1EK Sep 24 at 20:54

Your Answer

Get an OpenID
or

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