Java三个字节_过滤3个字节以上的utf-8字符
/*** 过滤掉超过3个字节的UTF8字符* @param text* @return* @throws UnsupportedEncodingException*/public static String filterOffUtf8Mb4(String text) throws UnsupportedEncodingException {byte[] bytes = text.getBytes(...