在 Java 中将系统属性设置为 Null

发布于 2024-10-05 18:51:57 字数 171 浏览 2 评论 0原文

在我的单元测试中,我需要将“workingDir”系统属性设置为 Null。

但我不能这样做,因为它给了我 NullPointerException:

System.setProperty("workingDir", null);

我该怎么做?

In my unit tests I need to set the "workingDir" system property to Null.

But I can not do somesing like this, because It give me NullPointerException:

System.setProperty("workingDir", null);

How can I do it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

世态炎凉 2024-10-12 18:51:58

System.setProperty() 在内部使用 Properties 对象实现,而该对象又使用旧的 Hashtable。这些哈希表永远不允许您使用 put() 方法设置 null 值,因此实际上不能这样做。乔恩·斯基特 (Jon Skeet) 的帖子提供了解决方案。

System.setProperty() is internally implemented using a Properties object, which in turn uses the good old Hashtable. Those hashtables never let you set a null value using theput() method, so it can't really be done that way. Jon Skeet's post has the solution.

最佳男配角 2024-10-12 18:51:58

您不能这样做,因为如果 setProperty 方法的任何参数为 null,则它会抛出 NullPointerException。
您可以在那里放置一个空字符串,并在单元测试中检查它,或者简单地清除属性,如乔恩建议的那样。

You can't do it, as setProperty method throws NullPointerException if any of it's arguments is null.
You can put an empty string there and check for it in your unit tests or simply clearProperty, as Jon suggested.

柏拉图鍀咏恒 2024-10-12 18:51:57

您不能将属性设置为具有实际的空值 - 您只能清除它,如下所示:

System.clearProperty("workingDir");

You can't set a property to have an actual null value - you can only clear it, like this:

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