GO语言-获取系统环境变量
/** * Created with IntelliJ IDEA. * User: liaojie * Date: 12-9-7 * Time: 下午8:33 * To change this template use File | Settings | File Templates. */ package main import ( "fmt" "os" //我们要用到os包中的env ) func main() { //os.Getenv检索环境变量并返回值,如果变量是不存在的,这将是空的。 HOME:= os.Getenv("HOME") fmt.Println(HOME) fmt.Printf(os.Getenv("JAVA_HOME")) }