StrUtils.java 346 B

12345678910111213141516
  1. package cn.iocoder.dashboard.util.string;
  2. import cn.hutool.core.util.StrUtil;
  3. /**
  4. * 字符串工具类
  5. *
  6. * @author 芋道源码
  7. */
  8. public class StrUtils {
  9. public static String maxLength(CharSequence str, int maxLength) {
  10. return StrUtil.maxLength(str, maxLength - 3); // -3 的原因,是该方法会补充 ... 恰好
  11. }
  12. }