StringUtils里的isEmpty方法和isBlank方法的区别详解

作者:延迟满足 时间:2023-07-15 04:29:16 

前言

我们常说的字符串为空,其实就是一个没有字符的空数组。比如:


String a = "";

a 就可以称为是一个空字符串。由于 String 在 Java 中底层是通过 char 数组去存储字符串的,所以空字符串对应的 char 数组表现形式为 


private final char value[] = new char[0];

但实际工作中,我们需要对字符串进行一些校验,比如:是否为 null,是否为空,是否去掉空格、换行符、制表符等也不为空。我们一般都是通过一些框架的工具类去做这些判断,比如:apache 的 commons jar 包。下面就讲述一下常见的两个字符串校验方法以及它们的区别。

isEmpty()


public static boolean isEmpty(String str) {    
 return str == null || str.length() == 0;
}

isBlank()


public static boolean isBlank(String str) {
   int strLen;
   if (str != null && (strLen = str.length()) != 0) {
     for(int i = 0; i < strLen; ++i) {
       // 判断字符是否为空格、制表符、tab
       if (!Character.isWhitespace(str.charAt(i))) {  
         return false;
       }
     }
     return true;
   } else {
     return true;
   }
 }

结论

通过以上代码对比我们可以看出:

1.isEmpty 没有忽略空格参数,是以是否为空和是否存在为判断依据。

2.isBlank 是在 isEmpty 的基础上进行了为空(字符串都为空格、制表符、tab 的情况)的判断。(一般更为常用)

大家可以看下面的例子去体会一下。


StringUtils.isEmpty("yyy") = false
StringUtils.isEmpty("") = true
StringUtils.isEmpty("  ") = false

StringUtils.isBlank("yyy") = false
StringUtils.isBlank("") = true

实例展示

自定义判断方法,实现同样的判断逻辑


 /**
  * 判断对象是否为null,不允许空白串
  *
  * @param object  目标对象类型
  * @return
  */
 public static boolean isNull(Object object){
   if (null == object) {
     return true;
   }
   if ((object instanceof String)){
     return "".equals(((String)object).trim());
   }
   return false;
 }

/**
  * 判断对象是否不为null
  *
  * @param object
  * @return
  */
 public static boolean isNotNull(Object object){
   return !isNull(object);
 }

System.out.println(StringHandler.isNull(null));    //true
System.out.println(StringHandler.isNull(""));     //true
System.out.println(StringHandler.isNull("  "));    //true
System.out.println(StringHandler.isNull("dd"));    //false

通常我们通过HttpServletRequest获取到的参数,需要经过判空处理,转型然后得到我们想要的值,这里可以进行这些操作的简单封装.如下


   /**
  * 从<code>HttpServletRequest</code>中获取<code>String</code>类型的值, 不允许传递空串
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */
 public static final String getString(HttpServletRequest request,String paramName){
   return getString(request, paramName, false);
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>String</code>类型的值
  *
  * 如果传递过来的参数为包含空白字符串的字符,认为为有效值, 否则返回null
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */
 public static final String getString(HttpServletRequest request,String paramName,boolean isWithSpace) {
   String tmp = request.getParameter(paramName);
   if(isWithSpace){
     //如果允许包含空格,则使用isEmpty判空
     if (!StringUtils.isEmpty(tmp)){
       return tmp;
     }
   }else{
     if(!StringUtils.isBlank(tmp)){
       return tmp;
     }
   }
   return null;
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Long</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */
 public static final Long getLong(HttpServletRequest request,String paramName) {
   return getLong(request, paramName, -1L);
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Long</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @param defaultValue
  *               默认值
  * @return
  *               返回需要的值
  */
 public static final Long getLong(HttpServletRequest request,String paramName,Long defaultValue) {
   String tmp = request.getParameter(paramName);
   if (!StringUtils.isBlank(tmp)){
     try {
       Long value = Long.parseLong(tmp);
       return value;
     } catch (NumberFormatException e) {
       return -1L;
     }
   }
   return defaultValue;
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Integer</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */

public static final Integer getInt(HttpServletRequest request,String paramName) {
   return getInt(request,paramName, -1);
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Integer</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @param defaultValue
  *               默认值
  * @return
  *               返回需要的值
  */
 public static final Integer getInt(HttpServletRequest request,String paramName, int defaultValue) {
   String tmp = request.getParameter(paramName);
   if (!StringUtils.isBlank(tmp)){
     try {
       Integer value = Integer.parseInt(tmp);
       return value;
     } catch (NumberFormatException e) {
       return -1;
     }
   }
   return defaultValue;
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Short</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */

public static final Short getShort(HttpServletRequest request,String paramName) {
   return getShort(request,paramName, (short)-1);
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Short</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @param defaultValue
  *               默认值
  * @return
  *               返回需要的值
  */
 public static final Short getShort(HttpServletRequest request,String paramName, short defaultValue) {
   String tmp = request.getParameter(paramName);
   if (!StringUtils.isBlank(tmp)){
     try {
       Short value = Short.parseShort(tmp);
       return value;
     } catch (NumberFormatException e) {
       return (short)-1;
     }
   }
   return defaultValue;
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Byte</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */

public static final Byte getByte(HttpServletRequest request,String paramName) {
   return getByte(request,paramName, (byte)-1);
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Byte</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @param defaultValue
  *               默认值
  * @return
  *               返回需要的值
  */
 public static final Byte getByte(HttpServletRequest request,String paramName, Byte defaultValue) {
   String tmp = request.getParameter(paramName);
   if (!StringUtils.isBlank(tmp)){
     try {
       Byte value = Byte.parseByte(tmp);
       return value;
     } catch (NumberFormatException e) {
       return (byte)-1;
     }
   }
   return defaultValue;
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Double</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */
 public static final Double getDouble(HttpServletRequest request,String paramName) {
   return getDouble(request, paramName,-1D);
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Double</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @param defaultValue
  *               默认值
  * @return
  *               返回需要的值
  */
 public static final Double getDouble(HttpServletRequest request,String paramName, Double defaultValue) {
   String tmp = request.getParameter(paramName);
   if (!StringUtils.isBlank(tmp)){
     try {
       Double value = Double.parseDouble(tmp);
       return value;
     } catch (NumberFormatException e) {
       return -1D;
     }
   }
   return defaultValue;
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Float</code>类型的值
  *
  *        
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @return
  *               返回需要的值
  */
 public static final Float getFloat(HttpServletRequest request,String paramName) {
   return getFloat(request, paramName,-1F);
 }

/**
  * 从<code>HttpServletRequest</code>中获取<code>Float</code>类型的值
  *
  * @param request
  *               @see HttpServletRequest
  * @param paramName
  *               参数名称
  * @param defaultValue
  *               默认值
  * @return
  *               返回需要的值
  */
 public static final Float getFloat(HttpServletRequest request,String paramName, Float defaultValue) {
   String tmp = request.getParameter(paramName);
   if (!StringUtils.isBlank(tmp)){
     try {
       Float value = Float.parseFloat(tmp);
       return value;
     } catch (NumberFormatException e) {
       return -1F;
     }
   }
   return defaultValue;
 }

来源:https://blog.csdn.net/a1102325298/article/details/80410740

标签:StringUtils,isEmpty,isBlank
0
投稿

猜你喜欢

  • java开源好用的简繁转换类库推荐

    2022-11-09 06:31:32
  • Android 后台发送邮件示例 (收集应用异常信息+Demo代码)

    2022-06-24 16:31:06
  • C#实现图形位置组合转换的方法

    2022-01-23 17:29:35
  • SpringBoot整合Groovy脚本实现动态编程详解

    2023-04-02 03:24:16
  • Java中文件操作功能小结

    2023-06-20 03:32:28
  • Android 多国语言value文件夹命名的方法

    2022-04-19 00:43:40
  • springboot2.X整合prometheus监控的实例讲解

    2021-07-04 13:49:59
  • Java语言读取配置文件config.properties的方法讲解

    2023-09-29 14:45:51
  • Java聊天室之实现一个服务器与多个客户端通信

    2021-06-03 11:34:45
  • Android桌面插件App Widget用法分析

    2022-02-05 02:26:39
  • C语言指针的图文详解

    2021-07-26 11:26:25
  • checkpoint 机制具体实现示例详解

    2023-03-31 21:42:01
  • C#对象为Null模式(Null Object Pattern)实例教程

    2023-07-27 15:53:28
  • Java实现替换PDF中的字体功能

    2023-10-04 13:24:17
  • 如何解决Mybatis--java.lang.IllegalArgumentException: Result Maps collection already contains value for X

    2022-03-20 10:35:44
  • java字符串比较获取字符串出现次数的示例

    2022-03-22 16:05:39
  • 基于ArrayList源码解析(基于JDK1.8)

    2021-10-07 18:34:25
  • 基于SpringBoot核心原理(自动配置、事件驱动、Condition)

    2023-08-23 01:46:31
  • Android语音识别技术详解及实例代码

    2022-09-23 03:46:33
  • Java System类两个常用方法代码实例

    2023-02-01 13:52:15
  • asp之家 软件编程 m.aspxhome.com