- 1、本文档共12页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
StringUtils工具类使用
一、数组转成字符串: 1、 将数组中的字符转换为一个字符串 将数组中的字符转换为一个字符串 @param strToConv 要转换的字符串 ,默认以逗号分隔 @return 返回一个字符串 String[3] s={a,b,c} StringUtil.convString(s)=a,b,c 2、 static public String converString(String strToConv) @param strToConv 要转换的字符串 , @param conv 分隔符,默认以逗号分隔 @return 同样返回一个字符串 String[3] s={a,b,c} StringUtil.convString(s,@)=a@b@c static public String converString(String strToConv, String conv) 二、空值检测: 3、 Checks if a String is empty () or null. 判断一个字符串是否为空,空格作非空处理。 StringUtils.isEmpty(null) = true StringUtils.isEmpty() = true StringUtils.isEmpty( ) = false StringUtils.isEmpty(bob) = false StringUtils.isEmpty( bob ) = false NOTE: This method changed in Lang version 2.0. It no longer trims the String. That functionality is available in isBlank(). @param str the String to check, may be null @return true if the String is empty or null public static boolean isEmpty(String str) 三、非空处理: 4、 Checks if a String is not empty () and not null. 判断一个字符串是否非空,空格作非空处理. StringUtils.isNotEmpty(null) = false StringUtils.isNotEmpty() = false StringUtils.isNotEmpty( ) = true StringUtils.isNotEmpty(bob) = true StringUtils.isNotEmpty( bob ) = true @param str the String to check, may be null @return true if the String is not empty and not null public static boolean isNotEmpty(String str) 5、 Checks if a String is not empty (), not null and not whitespace only. 判断一个字符串是否非空,空格作空处理. StringUtils.isNotBlank(null) = false StringUtils.isNotBlank() = false StringUtils.isNotBlank( ) = false StringUtils.isNotBlank(bob) = true StringUtils.isNotBlank( bob ) = true @param str the String to check, may be null @return true if the String is not empty and not null and not whitespace @since 2.0 public static boolean isNotBlank(String str) 四、 空格处理 6、 Removes control characters (char = 32) from both ends of this String, handling null by returning null. The String is trimmed using {@link String#trim()}. Trim removes start and end characters = 32. To
文档评论(0)