java数据结构和算法(StringUtil)

来源:互联网 发布:python 入门教程 编辑:程序博客网 时间:2024/06/06 16:57
package cn.xyc.sortUtil;/** *  * 描述:字符串工具类 *  * <pre> * HISTORY * **************************************************************************** *  ID   DATE           PERSON          REASON *  1    2016年10月3日        80002253         Create * **************************************************************************** * </pre> *  * @author 蒙奇·D·许 * @since 1.0 */public class StringUtil {/** *  * @param string * @return */public static boolean isNotEmpty(String string) {if (string == null || string.trim().length() <= 0) {return false;}return true;}}

0 0
原创粉丝点击