按字節長度截取字符串

需求:按字節數截取字符串,可是不容許劈開漢字。blog   public static final String subStrViaByteLen(String src, Charset charset, int len) {   if (src==null || src.length()<1) {    return src;   }   if (len < 1) {    return "";
相關文章
相關標籤/搜索