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

How do I set environment variables from Java? I see that I can do this for subprocesses using ProcessBuilder. I have several subprocesses to start, though, so I'd rather modify the current process's environment and let the subprocesses inherit it.

There's a System.getenv(String) for getting a single environment variable. I can also get a Map of the complete set of environment variables with System.getenv(). But calling put() on that Map throws an UnsupportedOperationException -- apparently they mean for the environment to be read only. And there's no System.setenv().

So, is there any way to set environment variables in the currently running process? If so, how? If not, what's the rationale? (Is it because this is Java and therefore I shouldn't be doing evil nonportable obsolete things like touching my environment?) And if not, any good suggestions for managing the environment variable changes that I'm going to need to be feeding to several subprocesses?

share|improve this question
System.getEnv() is intended to be universal-ish, some environments don't even have environment variables. – b1naryatr0phy May 12 '12 at 0:44

6 Answers

up vote 29 down vote accepted

(Is it because this is Java and therefore I shouldn't be doing evil nonportable obsolete things like touching my environment?)

I think you've hit the nail on the head.

A possible way to ease the burden would be to factor out a method

void setUpEnvironment(ProcessBuilder builder) {
    Map<String, String> env = builder.environment();
    // blah blah
}

and pass any ProcessBuilders through it before starting them.

Also, you probably already know this, but you can start more than one process with the same ProcessBuilder. So if your subprocesses are the same, you don't need to do this setup over and over.

share|improve this answer
It's a shame management won't let me use a different portable language for running this set of evil, obsolete subprocesses, then. :) – skiphoppy Nov 25 '08 at 17:47
@skiphoppy: no tool can set the parent's environment -- it's not a tool issue, it's an OS issue. – S.Lott Nov 25 '08 at 18:04
3  
S.Lott, I'm not looking to set a parent's environment. I'm looking to set my own environment. – skiphoppy Nov 25 '08 at 18:06
Thanks, mmyers. I think I'm definitely going to have to factor out such a method. I already have a ProcessUtils class, so it's going to have to grow to manage changes to the environment. – skiphoppy Nov 25 '08 at 18:07
3  
@b1naryatr0phy You missed the point. Nobody can play with your environment variables since those variables are local to a process (what you set in Windows are the default values). Each process is free to change its own variables... unless its Java. – maaartinus Jun 29 '12 at 0:36
show 3 more comments

I found that a combination of the two dirty hacks above works best, as one of the does not work under linux, one does not work under windows 7. So to get a multiplatform evil hack I combined them:

protected static void setEnv(Map<String, String> newenv)
{
  try
    {
        Class<?> processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment");
        Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment");
        theEnvironmentField.setAccessible(true);
        Map<String, String> env = (Map<String, String>) theEnvironmentField.get(null);
        env.putAll(newenv);
        Field theCaseInsensitiveEnvironmentField = processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment");
        theCaseInsensitiveEnvironmentField.setAccessible(true);
        Map<String, String> cienv = (Map<String, String>)     theCaseInsensitiveEnvironmentField.get(null);
        cienv.putAll(newenv);
    }
    catch (NoSuchFieldException e)
    {
      try {
        Class[] classes = Collections.class.getDeclaredClasses();
        Map<String, String> env = System.getenv();
        for(Class cl : classes) {
            if("java.util.Collections$UnmodifiableMap".equals(cl.getName())) {
                Field field = cl.getDeclaredField("m");
                field.setAccessible(true);
                Object obj = field.get(env);
                Map<String, String> map = (Map<String, String>) obj;
                map.clear();
                map.putAll(newenv);
            }
        }
      } catch (Exception e2) {
        e2.printStackTrace();
      }
    } catch (Exception e1) {
        e1.printStackTrace();
    } 
}

Works like a charm. Full credits to the two authors of these hacks.

share|improve this answer
Works like a charm, thanks! – Victor Parmar Mar 7 '12 at 21:54
yaaah.....Works like a Charm....Thank you for this..helps me a lot. – Sam Apr 26 '12 at 6:03
4  
This will only change the environment variable in memory. This is good for testing, because you can set the environment variable as necessary for your test, but leave the envs in the system as they are. In fact, I would strongly discourage anyone from using this code for any other purpose than testing. This code is evil ;-) – pushy Jun 25 '12 at 8:09
1  
As an FYI, the JVM creates a copy of the environment variables when it starts. This will edit that copy, not the environment variables for the parent process that started the JVM. – bmeding Aug 15 '12 at 14:12
4  
upvoted for sheer dirtiness – Epaga Sep 20 '12 at 12:05
show 4 more comments
public static void set(Map<String, String> newenv) throws Exception {
    Class[] classes = Collections.class.getDeclaredClasses();
    Map<String, String> env = System.getenv();
    for(Class cl : classes) {
        if("java.util.Collections$UnmodifiableMap".equals(cl.getName())) {
            Field field = cl.getDeclaredField("m");
            field.setAccessible(true);
            Object obj = field.get(env);
            Map<String, String> map = (Map<String, String>) obj;
            map.clear();
            map.putAll(newenv);
        }
    }
}
share|improve this answer
Dude ... does it really work??? – skiphoppy Jan 30 '09 at 21:08
It sounds like that would modify the map in memory, but would it save the value to the system? – Jon Dec 5 '09 at 17:53
well it does change the memory map of environment variables. i guess that suffices in a whole lot of use-cases. @Edward - gosh, it's hard to imagine how this solution was figured out in the first place! – anirvan Jul 27 '10 at 12:53
This won't change the environment variables on the system, but will change them in the current invocation of Java. This is very useful for unit testing. – Stuart K Feb 14 '11 at 14:07
2  
why not use Class<?> cl = env.getClass(); instead of that for loop? – thejoshwolfe May 9 '12 at 3:00
show 1 more comment
  // this is a dirty hack - but should be ok for a unittest.
  private void setNewEnvironmentHack(Map<String, String> newenv) throws Exception
  {
    Class<?> processEnvironmentClass = Class.forName("java.lang.ProcessEnvironment");
    Field theEnvironmentField = processEnvironmentClass.getDeclaredField("theEnvironment");
    theEnvironmentField.setAccessible(true);
    Map<String, String> env = (Map<String, String>) theEnvironmentField.get(null);
    env.clear();
    env.putAll(newenv);
    Field theCaseInsensitiveEnvironmentField = processEnvironmentClass.getDeclaredField("theCaseInsensitiveEnvironment");
    theCaseInsensitiveEnvironmentField.setAccessible(true);
    Map<String, String> cienv = (Map<String, String>) theCaseInsensitiveEnvironmentField.get(null);
    cienv.clear();
    cienv.putAll(newenv);
  }
share|improve this answer

Poking around online, it looks like it might be possible to do this with JNI. You'd then have to make a call to putenv() from C, and you'd (presumably) have to do it in a way that worked on both Windows and UNIX.

If all that can be done, it surely wouldn't be too hard for Java itself to support this instead of putting me in a straight jacket.

A Perl-speaking friend elsewhere suggests that this is because environment variables are process global and Java is striving for good isolation for good design.

share|improve this answer
Yes, you can set the processes environment from C code. But I wouldn't count on that working in Java. There is a good chance that the JVM copies the environment into Java String objects during startup, so your changes would not be used for future JVM operations. – Darron Nov 25 '08 at 21:09
Thanks for the warning, Darron. There's probably a good chance you're right. – skiphoppy Nov 25 '08 at 21:10

You can pass parameters into your initial java process with -D:

java -cp <classpath> -Dkey1=value -Dkey2=value ...
share|improve this answer
The values are not known at execution time; they become known during the program's execution when the user provides/selects them. And that sets only system properties, not environment variables. – skiphoppy Nov 25 '08 at 17:45
Then in that case you probably want to find a regular way (via the args[] parameter to the main method) to invoke your subprocesses. – matt b Nov 25 '08 at 17:53
matt b, the regular way is via ProcessBuilder, as mentioned in my original question. :) – skiphoppy Nov 25 '08 at 18:08
2  
-D parameters are available through System.getProperty and are not the same as System.getenv. Besides, the System class also allows to set these properties statically using setProperty – anirvan Jul 28 '10 at 7:14

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.