Cut Java String at a number of character

后端 未结 8 1547
我寻月下人不归
我寻月下人不归 2020-12-18 18:43

I would like to cut a Java String when this String length is > 50, and add \"...\" at the end of the string.

Example :

I have the f

8条回答
  •  臣服心动
    2020-12-18 18:45

    You can use safe substring:

    org.apache.commons.lang3.StringUtils.substring(str, 0, LENGTH);
    

提交回复
热议问题