mirror of
https://gitee.com/dromara/hutool.git
synced 2025-04-05 17:20:07 +08:00
StrUtil增加toStringOrEmpty方法
This commit is contained in:
parent
562d41386f
commit
28222dd349
@ -2,10 +2,11 @@
|
||||
# 🚀Changelog
|
||||
|
||||
-------------------------------------------------------------------------------------------------------------
|
||||
# 5.8.28(2024-04-01)
|
||||
# 5.8.28(2024-04-03)
|
||||
|
||||
### 🐣新特性
|
||||
* 【core 】 修正XmlUtil的omitXmlDeclaration描述注释(issue#I9CPC7@Gitee)
|
||||
* 【core 】 StrUtil增加toStringOrEmpty方法(issue#I9CPC7@Gitee)
|
||||
|
||||
### 🐞Bug修复
|
||||
|
||||
|
@ -294,9 +294,9 @@ public class StrUtil extends CharSequenceUtil implements StrPool {
|
||||
* @return {@link String }
|
||||
* @author ahwei163@qq.com
|
||||
*/
|
||||
public static String toStringOrEmptyStr(Object obj) {
|
||||
public static String toStringOrEmpty(Object obj) {
|
||||
// obj为空时, 返回 null 或 "null" 都不适用部分场景, 此处返回 "" 空字符串
|
||||
return null == obj ? "" : obj.toString();
|
||||
return null == obj ? EMPTY : obj.toString();
|
||||
}
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user