O
only you
Unregistered / Unconfirmed
GUEST, unregistred user!
鉴于本版太冷清,特发一些小心得
/*
* 本例程演示如何获得本地环境变量,例如操作系统,版本等等,运行看看就知道了
*
*/
import java.util.*;
class eample2
{
public static void main(String[] args)
{
Enumeration e=System.getProperties().propertyNames();
while (e.hasMoreElements())
{
String temp=(String)e.nextElement();
System.out.println(temp+" = "+System.getProperty(temp));
}
}
}
/*
* 本例程演示如何获得本地环境变量,例如操作系统,版本等等,运行看看就知道了
*
*/
import java.util.*;
class eample2
{
public static void main(String[] args)
{
Enumeration e=System.getProperties().propertyNames();
while (e.hasMoreElements())
{
String temp=(String)e.nextElement();
System.out.println(temp+" = "+System.getProperty(temp));
}
}
}