我需要在OSX上获取环境变量ANDROID_HOME
的值(在 .bash_profile 中设置)。我可以通过在终端中输入echo $ANDROID_HOME
来验证其存在。
以下是代码:( Xcode项目)
void testGetEnv(const string envName) {
char* pEnv;
pEnv = getenv(envName.c_str());
if (pEnv!=NULL) {
cout<< "The " << envName << " is: " << pEnv << endl;
} else {
cout<< "The " << envName << " is NOT set."<< endl;
}
}
int main() {
testGetEnv("ANDROID_HOME");
}
输出始终为The ANDROID_HOME is NOT set.
。我不认为我在这里正确使用getenv()
。当调用getenv()
时,或 .bash_profile 无效。
我错过了什么?
答案 0 :(得分:4)
您的代码似乎是正确的 - 因此您最有可能在确实未设置ANDROID_HOME的环境中调用您的程序。你是如何开始你的计划的?
我将源代码更改为实际可编译,并且在我的OS X系统上运行正常:
#include <iostream>
#include <string>
#include <stdlib.h>
using namespace std;
void testGetEnv(const string envName) {
char* pEnv;
pEnv = getenv(envName.c_str());
if (pEnv!=NULL) {
cout<< "The " << envName << " is: " << pEnv << endl;
} else {
cout<< "The " << envName << " is NOT set."<< endl;
}
}
int main() {
testGetEnv("ANDROID_HOME");
}
用以下内容编译:
g++ getenv.cpp -o getenv
现在运行:
./getenv
The ANDROID_HOME is NOT set.
export ANDROID_HOME=something
./getenv
The ANDROID_HOME is: something