我想在Ubuntu 10.04使用shell纸条来设置环境,并希望在Java程序来访问。 我曾经写过shell脚本是这样的:
#! /bin/sh
export JAVA=/home/ubuntu
echo "Variable $JAVA"
我的java程序是:
import java.util.Map;
public class SystemEnv
{
public static void main(String[] args)
{
Map<String, String> variables = System.getenv();
for (Map.Entry<String, String> entry : variables.entrySet())
{
String name = entry.getKey();
String value = entry.getValue();
System.out.println(name + "=" + value);
}
System.out.println(System.getenv(("JAVA")));
}
}
当我没有shell脚本执行此命令它工作得很好,但在shell脚本没有。