2015年1月11日
摘要: /** * 过滤掉超过3个字节的UTF8字符 * @param text * @return * @throws UnsupportedEncodingException */ public static String filterOffUtf8Mb4(String text) throws UnsupportedEncodingException { byte[] bytes = text.getBytes("utf-8"); ByteBuffer buffer = ByteBuffer.allocate(bytes.length); int i = 0; 阅读全文
posted @ 2015-01-11 23:30 上校 阅读(3203) 评论(0) 推荐(1) 编辑