标签:boolean tostring 正则表达式 amp int bak pat 正则 bst
1:计算String字符串中汉字的个数
private int countChinese(String text) { int amount = 0;// 创建统计汉字的计数器 for (int i = 0; i < text.length(); i++) {// 遍历字符串每一个字符 // 使用正则表达式,判断字符是否为汉字编码 boolean matches = Pattern.matches("^[\u4E00-\u9FA5]{0,}$", "" + text.charAt(i)); if (matches) {// 如果是汉字 amount++;// 则累加 } } return amount; }
2:十六进制转为汉字
public static String hexToStringGBK(String s) { byte[] baKeyword = new byte[s.length() / 2]; for (int i = 0; i < baKeyword.length; i++) { try { baKeyword[i] = (byte) (0xff & Integer.parseInt(s.substring(i * 2, i * 2 + 2), 16)); } catch (Exception e) { e.printStackTrace(); return ""; } } try { s = new String(baKeyword, "GBK");// UTF-16le:Not } catch (Exception e1) { e1.printStackTrace(); return ""; } return s; }
标签:boolean tostring 正则表达式 amp int bak pat 正则 bst
原文地址:http://www.cnblogs.com/wnpp/p/7815762.html