当前位置: 技术问答>java相关
谁能告诉我 :系统属性是什么?
来源: 互联网 发布时间:2015-07-26
本文导语: System.setProperty(String key,String value) Sets the system property indicated by the specified key. But who can tell me what the "system property" is?And how can I get or see all the system properties? thanks! | (Syste...
System.setProperty(String key,String value)
Sets the system property indicated by the specified key.
But who can tell me what the "system property" is?And how can I get or see all the system properties?
thanks!
Sets the system property indicated by the specified key.
But who can tell me what the "system property" is?And how can I get or see all the system properties?
thanks!
|
(System.getProperties()).list(System.out);
慢慢看吧。
慢慢看吧。
|
系统属性参数,可以在启动程序时传入,你可以看很多系统的启动脚本,都会有的。
java -Dpath=d:1234 Main //都是 -D 开始的。
这样在你的Main程序中,你可以通过System.getProperty("path")就可以得到1234了,类似于启动参数,但也有所不同,系统属性再恰当不过了。
java -Dpath=d:1234 Main //都是 -D 开始的。
这样在你的Main程序中,你可以通过System.getProperty("path")就可以得到1234了,类似于启动参数,但也有所不同,系统属性再恰当不过了。