Android set(get) environmental variables in Java

Environment variables are only visible in a process that sets the variable, and child processes launched after setting the variable. When you set the environment variable from the adb shell you are not in the parent process of the process that launches the Android application, so the application cannot see the variable you set.

In Java (and Android) there is no System.setenv(), but if you need to set an environment variable for your own program to read there are always better ways. One such way is setting and getting Properties instead.

Setting environment variables in Java is not really possible (well, it is, but you don't want to do it). You can use ProcessBuilder if you want to set a variable that another process should read, but that's if the process is launched from a Java/Android program.

Think about what problem you're trying to solve, and if it can be done without using environment variables. They're not a good fit in Java, and are even worse on Android.


It is possible to set environment variables in Android applications. However, as @richq said, those variables will be only visible in processes launched from the application that has set environment variable (and JNI libraries used by the application). See this post for regarding setting environment variables from Android application: https://stackoverflow.com/a/22315463/927592


Android API 21 provides a way to set the environment variables. To set an environment variable, invoke Os.setenv.

See this android.system.Os documentation and this setenv(3) documentation.

Each process has its own environment, which is copied from the parent process's environment. So the environment variables are per-process.