当前位置: 技术问答>java相关
怎样在java程序中获得环境变量,如classpth,TOMCAT_HOME等的值?
来源: 互联网 发布时间:2017-03-14
本文导语: 怎样在java程序中获得环境变量,如classpth,TOMCAT_HOME等的值? | import java.util.*; class getenv { public static void main(String[] args) { Properties pro = System.getProperties(); Enumeration en = pro.propertyNames()...
怎样在java程序中获得环境变量,如classpth,TOMCAT_HOME等的值?
|
import java.util.*;
class getenv
{
public static void main(String[] args)
{
Properties pro = System.getProperties();
Enumeration en = pro.propertyNames();
while(en.hasMoreElements()){
System.out.println(en.nextElement()+ ": " + pro.getProperty(en.nextElement().toString()));
}
}
}
class getenv
{
public static void main(String[] args)
{
Properties pro = System.getProperties();
Enumeration en = pro.propertyNames();
while(en.hasMoreElements()){
System.out.println(en.nextElement()+ ": " + pro.getProperty(en.nextElement().toString()));
}
}
}
|
用java.lang.System类啊
|
得到classpath路径:System.getProperty(java.class.path);
还有许多其他的系统参数,具体参考api文档。
还有许多其他的系统参数,具体参考api文档。