java属性

发布于 2024-12-07 17:44:50 字数 71 浏览 0 评论 0原文

对于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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

臻嫒无言 2024-12-14 17:44:50

或者,如果您使用的是属性文件,则可以执行以下操作:

Properties p = new Properties()

p.load(new FileInputStream(args[0]))

if (p.getProperty("quitonload").equals("true")) {
  System.out.println("quitonload is true");
  System.exit(1);
}
System.out.println("quitonload is false");

检查 文档

Or if you're using a Properties file you can do this:

Properties p = new Properties()

p.load(new FileInputStream(args[0]))

if (p.getProperty("quitonload").equals("true")) {
  System.out.println("quitonload is true");
  System.exit(1);
}
System.out.println("quitonload is false");

Check the documentation on the Properties file if you have any doubts on the file format.

幻梦 2024-12-14 17:44:50

您的意思是:

if (System.getProperty("quitonload", "false").equals("true")) {
    System.exit(1);
}

注意引号;系统属性始终是字符串。

Do you mean something like:

if (System.getProperty("quitonload", "false").equals("true")) {
    System.exit(1);
}

Note the quotation marks; system properties are always strings.

泪眸﹌ 2024-12-14 17:44:50

属性是键/值对,每个都由一个 String 表示

if (myPropertiesObj.getProperty("quitonload").equalsIgnoreCase("true"))
{
    ...
}

Properties are key/value pairs, each represented by a String

if (myPropertiesObj.getProperty("quitonload").equalsIgnoreCase("true"))
{
    ...
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文