本文主要是介绍使用TextUtils.isEmpty()遇到的坑,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用TextUtils.isEmpty()遇到的坑
Android开发中,我们经常使用TextUtils.isEmpty()来判断字符串是否为null或者空字符串,防止出现空指针异常,有一天执行报出了空指针异常 。如下
java.lang.NullPointerException: Attempt to invoke virtual method 'boolean java.lang.String.equals(java.lang.Object)' on a null object reference
满头黑线
查看源码
/*** Returns true if the string is null or 0-length.* @param str the string to be examined* @return true if str is null or zero length*/public static boolean isEmpty(CharSequence str) {if (str == null || str.length() == 0)return true;elsereturn false;}
得出一般情况下使用是没问题的。
现在我们考虑这样一种情况:假设实体参数有一个属性name,String类型。后台在响应这个属性到手机端的时候,是这样赋值的name = null + “”,这样就会报错。
安全写法
!((TextUtils.isEmpty(name)) && ("null".equalsIgnoreCase(name)))
这篇关于使用TextUtils.isEmpty()遇到的坑的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!