에있는 시스템 변수 값을 얻는 방법
MyComputer -> Properties -> Advanced -> Environment Variables -> System Variables
자바?
편집하다
나는 System.getenv()
방법 을 사용했다 .
주면 인쇄 가치입니다
System.out.println(System.getenv("JAVA_HOME"));
null
내가 만든 시스템 변수에 대해 동일하게 시도하면 값 이 표시 됩니다.
System.out.println(System.getenv("DBE"));