码迷,mamicode.com
首页 > 其他好文 > 详细

1:各种字符转换

时间:2017-11-10 20:22:01      阅读:103      评论:0      收藏:0      [点我收藏+]

标签: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;
    }

 

1:各种字符转换

标签:boolean   tostring   正则表达式   amp   int   bak   pat   正则   bst   

原文地址:http://www.cnblogs.com/wnpp/p/7815762.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!