在 Java 中将系统属性设置为 Null
在我的单元测试中,我需要将“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
System.setProperty()
在内部使用Properties
对象实现,而该对象又使用旧的Hashtable
。这些哈希表永远不允许您使用 put() 方法设置 null 值,因此实际上不能这样做。乔恩·斯基特 (Jon Skeet) 的帖子提供了解决方案。System.setProperty()
is internally implemented using aProperties
object, which in turn uses the good oldHashtable
. 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.您不能这样做,因为如果
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.
您不能将属性设置为具有实际的空值 - 您只能清除它,如下所示:
You can't set a property to have an actual null value - you can only clear it, like this: