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

Are the environment variables of the parent process(e.g. shell) available in the environment in which a child process that is invoked using Runtime.exec(command) run? I had a look at the API documentation but it's not specified there.

My use case is this

mainScript.sh invokes java MainClass

MainClass invokes Runtime.exec("hi.sh")

Now, is a variable MY_ENV that is set and exported in mainScript.sh available to hi.sh?

PS: I'm aware of the 2nd API that takes explicit String[] envp.

http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4064912 has some vague info.

share|improve this question
What happens when you try it? – Martijn Verburg Dec 2 '10 at 13:00
I tried it and the answer was 'Yes, it passed it'. But I want a concrete answer, something not based on mere experimentation. – Jagat Dec 2 '10 at 13:01
2  
The runtime would have to go to some pains to not convey environment variables, and doing so would potentially make launched processes fail (due to missing LD_LIBRARY_PATH or just PATH for that matter), so I think it's safe to rely on the environment working. – Pointy Dec 2 '10 at 13:03

1 Answer

up vote 2 down vote accepted

Yes, why not?

From Runtime documentation:

Every Java application has a single instance of class Runtime that allows the application to interface with the environment in which the application is running

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.