1

我想在 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 脚本中却不行。

4

2 回答 2

4

你是如何采购脚本的?

$./myscript.sh 

或者

$source ./myscript.sh 

第二个将环境变量设置为当前shell。java程序看起来不错。

编辑:基于评论

这是一个与 subshel​​l 相关的问题。快速阅读是
执行 bash 脚本和采购 bash 脚本有什么区别?

于 2012-04-13T11:48:59.740 回答
1

你到底想做什么?

运行JAVA=/home/ubuntu java SystemEnv正常(即输出“/home/ubuntu”)

如果要将环境变量导出到父进程,则必须对其进行源:

source ./myscript.sh
. ./myscript.sh # Alternative form
于 2012-04-13T11:52:51.267 回答