Java实现昵称首字母排序

pom.xml导入内容,使用插件:jpinyin

<dependency>
    <groupId>com.github.stuxuhaigroupId>
    <artifactId>jpinyinartifactId>
dependency>

Java获取昵称的首字母

try {
        //获取昵称首字母字符
        char c = PinyinHelper.getShortPinyin(memberDto.getNickname()).toUpperCase().charAt(0);
        if(c >= 65 && c <= 90 ){//如果是A-Z
            hpRedisMemberDto.setCode(c);
        }else{
            hpRedisMemberDto.setCode('#');//否则设置#
        }
    } catch (PinyinException e) {
       hpRedisMemberDto.setCode('#');//设置#
    }

随后可以使用redis等方式对按照“hpRedisMemberDto”的“code”字段进行排序

你可能感兴趣的:(javaWeb)