1

我有一个 C 程序,它打印每个环境变量,其名称由标准输入给出。它打印 $PATH、$USER 等变量,但看不到我在 Linux shell 中定义的环境变量...例如,在 ~.bashrc 中我导出了 MYTEST=test_is_working,然后我获取了 bashrc(来源〜/ .bashrc)。我希望程序使用 getenv 返回 test_is_working,但事实并非如此。

#include <QCoreApplication>
#include <stdio.h>
#include <stdlib.h>

int main(int argc, char *argv[])
{
    QApplication a(argc, argv);

    char* my_env= getenv("MYTEST");

    if(my_env!=NULL){
        printf("my env is : %s \n", my_env);
    }
    else {
        printf("can't find env \n");
    }
return a.exec();
}

它返回:找不到环境

而当我打开终端并输入“env”时,我有 MYTEST=test_is_working

我看到了一个类似的帖子: Using getenv function where the solution is to launch the program from the shell。但我不能,因为我正在 Qtcreator 中运行和调试。

我不知道我在哪里错了,有人可以解释一下吗?

谢谢

4

1 回答 1

1
  1. 环境变量仅传递给设置变量后启动的子进程。所以在 shell 中设置它们不会改变 Qt Creator 和从它启动的程序中的任何内容。
  2. Qt Creator 允许自定义环境变量(我见过)。
    检查项目设置(运行部分)和/或 Qt Creator 属性(应该很容易找到)。
  3. 您还可以在项目设置,运行部分中设置程序参数(甚至重定向标准流)。
于 2014-03-06T10:25:07.660 回答