Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们正在将我们的构建迁移到 gradle,我曾经有一个用于部署的外部脚本,它引用了一些系统环境变量。我可以在我的 init.gradle 中引用它们吗?如何访问它们?
环境变量以通常的 Java 方式访问:System.getenv()获取所有环境变量,并System.getenv("foo")获取特定的一个。
System.getenv()
System.getenv("foo")