16 lines
265 B
Java
Raw Normal View History

2019-07-29 17:55:08 +08:00
package util;
/**
* 类功能简述
* 类功能详述
*
* @author fanxb
* @date 2019/4/4 16:17
*/
public class StringUtil {
public static boolean isEmpty(String str) {
return str == null || str.trim().length() == 0;
}
}