使用 System.getProperty 作为条件
使用 xxx.equals(System.getProperty(key)) 作为条件可以吗?或者我应该将这些属性用于其他目的吗?
我一直在读这些;
http://download.oracle.com/javase/tutorial/essential/environment /sysprop.html
http://download.oracle.com/javase/6/docs/api/java/lang/System.html
但是,我对其用法有点困惑。 更多链接或一些代码示例将会非常有帮助。
谢谢...
Is it OK to use xxx.equals(System.getProperty(key)) as a condition? Or Am I supposed to use the properties for some other purposes?
I have been reading these;
http://download.oracle.com/javase/tutorial/essential/environment/sysprop.html
http://download.oracle.com/javase/6/docs/api/java/lang/System.html
however, I'm a little confused on its usage.
Some more links or some code samples would be very helpful.
Thank you...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
是的,你使用它们就可以了。 (例如:
os.name
来找出操作系统)Yes it's ok you use them. (example:
os.name
to figure out what operation system)正如每个人都说是的,你可以做到这一点。
关于:
试试这个链接,您可能会发现它很有帮助。
As everybody said yes you can do this.
Regarding:
try this link, you might find it helpful.
当然没问题。不过,这是否正确显然取决于
xxx
中的值。Sure it's OK. Whether it's true will obviously depend on the value in
xxx
though.我认为当你真正需要的时候你可以使用它:)
I think that when you really need you can use it :)