StringUtil工具类
Posted 江湖@小小白
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了StringUtil工具类相关的知识,希望对你有一定的参考价值。
import java.util.UUID;
/**
* @Author: 江湖@小小白
* @Date: 2021/10/15
*/
public class StringUtil {
public static boolean isNullOrEmpty(String src) {
return null == src || src.trim().length() == 0 || "null".equalsIgnoreCase(src.trim());
}
public static boolean isNullOrEmpty(String... strings) {
for (String str : strings) {
if (isNullOrEmpty(str)) {
return true;
}
}
return false;
}
public static String getUpperUuid(){
return UUID.randomUUID().toString().replace("-", "").toUpperCase();
}
}
以上是关于StringUtil工具类的主要内容,如果未能解决你的问题,请参考以下文章
Java开发常用Util工具类-StringUtilCastUtilCollectionUtilPropsUtil
hutool(字符串工具-StrUtil与类型转换工具类-Convert)
java分页三个类 PageBean ResponseUtil StringUtil