Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要清除警告或说出错误消息,这将是选择 setMessage(null) 或使用 StringUtils.EMPTY 的最佳选择 - 我只想知道使用 StringUtils.EMPTY 的确切方式,这会很有帮助.. .
感谢和问候。
不要使用null.
null
由于它是一条消息,您可能会在某个地方显示它,如果您将其设置为null,它将显示为"null" 最终用户。
"null"
试试看,
private static final String EMPTY_STRING = ""; setMessage(EMPTY_STRING );
另一方面,您可以使用isEmpty 方法检查,而不是检查null。
isEmpty