Z
[ZaToPeK]
Hello i have in my system some variables:
TOMCAT_HOME
CLASSPATH
CATALINA_HOME
......
how can i load them into some strings?
i am trying with this:
Properties properties = System.getProperties();
Enumeration claves = properties.keys();
while( claves.hasMoreElements() ){
String clave = (String)claves.nextElement();
String valor = properties.getProperty( clave );
System.out.println(clave+" : " + valor);
}
but it doesn't load those variables.
Can anybody helps me?
thanks
TOMCAT_HOME
CLASSPATH
CATALINA_HOME
......
how can i load them into some strings?
i am trying with this:
Properties properties = System.getProperties();
Enumeration claves = properties.keys();
while( claves.hasMoreElements() ){
String clave = (String)claves.nextElement();
String valor = properties.getProperty( clave );
System.out.println(clave+" : " + valor);
}
but it doesn't load those variables.
Can anybody helps me?
thanks