本帖最后由 谭辉 于 2013-4-6 19:22 编辑
import java.util.Properties;
import static System.out.Sop.*;
public class SystemDemo {
public static void main(String[] args) {
Properties prop=System.getProperties();
String value=System.getProperty("os.name");
System.out.println("value="+value);
}
}
在win7上运行上面的程序怎么是vista的
|