Here you can find the source of lengthFormat(String str, int maxLength)
public static String lengthFormat(String str, int maxLength)
//package com.java2s; //License from project: Apache License public class Main { public static String lengthFormat(String str, int maxLength) { return str.length() > maxLength ? str.substring(0, maxLength) + "..." : str; }/*from ww w . j a va 2s. c om*/ }