JAVA工具类-StrUtils
Posted c2j
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA工具类-StrUtils相关的知识,希望对你有一定的参考价值。
public class StrUtils { public static final String UTF_8 = "UTF-8"; /** * 去掉小数字符串后面无用的零 */ public static String replaceTheTailZero(String value){ if(StringUtils.isEmpty(value)){ return value; } if(value.indexOf(".") > 0){ value =value.replaceAll("0+?$", "");//去掉后面无用的零 value =value.replaceAll("[.]$", "");//如小数点后面全是零则去掉小数点 } return value; } /** * UTF-8字符长度换算 */ public static int getStrByteLen(String value) throws UnsupportedEncodingException{ if(StringUtils.isEmpty(value)){ return 0; } return value.getBytes(UTF_8).length; } /** * 验证是否为空 */ public static boolean validationIsNull(String value) { if (StringUtils.isEmpty(value)) { return true; } if (StringUtils.trim(value).length() == 0) { return true; } return false; } }
以上是关于JAVA工具类-StrUtils的主要内容,如果未能解决你的问题,请参考以下文章