java属性
对于java中的属性,我如何检查属性的值是否等于某个示例,如果属性 quitonload 等于 true 那么程序将在启动时退出
With properties in java how could I check if the value of the property is equal to something example if the property quitonload is equal to true then the program will exit on start
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者,如果您使用的是属性文件,则可以执行以下操作:
检查 文档。
Or if you're using a Properties file you can do this:
Check the documentation on the Properties file if you have any doubts on the file format.
您的意思是:
注意引号;系统属性始终是字符串。
Do you mean something like:
Note the quotation marks; system properties are always strings.
属性是键/值对,每个都由一个
String
表示Properties are key/value pairs, each represented by a
String