在项目中要更能根据某些查询条件(比如姓名)的首字母作为条件进行查询,比如查一个叫“李晓明”的人,可以输入‘lxm'。写了一个工具类如下:

import java.io.UnsupportedEncodingException;

  • /**
  • * 取得给定汉字串的首字母串,即声母串
  • * Title: ChineseCharToEn
  • * @date 2004-02-19 注:只支持GB2312字符集中的汉字
  • */
  • public final class ChineseCharToEn {
  • private final static int[] li_SecPosValue = { 1601, 1637, 1833, 2078, 2274,
  • 2302, 2433, 2594, 2787, 3106, 3212, 3472, 3635, 3722, 3730, 3858,
  • 4027, 4086, 4390, 4558, 4684, 4925, 5249, 5590 };
  • private final static String[] lc_FirstLetter = { "a", "b", "c", "d", "e",
  • "f", "g", "h", "j", "k", "l", "m", "n", "o", "p", "q", "r", "s",
  • "t", "w", "x", "y", "z" };
  • /**
  • * 取得给定汉字串的首字母串,即声母串
  • * @param str 给定汉字串
  • * @return 声母串
  • */
  1. public String getAllFirstLetter(String str) {
  • if (str == null || str.trim().length() == 0) {
  • return "";
  • }
  • String _str = "";
  • for (int i = 0; i < str.length(); i++) {
  • _str = _str + this.getFirstLetter(str.substring(i, i + 1));
  • }
  • return _str;
  • }
  • /**
  • * 取得给定汉字的首字母,即声母
  • * @param chinese 给定的汉字
  • * @return 给定汉字的声母
  • */
  • public String getFirstLetter(String chinese) {
  • if (chinese == null || chinese.trim().length() == 0) {
  • return "";
  • }
  • chinese = this.conversionStr(chinese, "GB2312", "ISO8859-1");
  • if (chinese.length() > 1) // 判断是不是汉字
  • {
  • int li_SectorCode = (int) chinese.charAt(0); // 汉字区码
  • int li_PositionCode = (int) chinese.charAt(1); // 汉字位码
  • li_SectorCode = li_SectorCode - 160;
  • li_PositionCode = li_PositionCode - 160;
  • int li_SecPosCode = li_SectorCode * 100 + li_PositionCode; // 汉字区位码
  • if (li_SecPosCode > 1600 && li_SecPosCode < 5590) {
  • for (int i = 0; i < 23; i++) {
  • if (li_SecPosCode >= li_SecPosValue[i]
  • && li_SecPosCode < li_SecPosValue[i + 1]) {
  • chinese = lc_FirstLetter[i];
  • break;
  • }
  • }
  • } else // 非汉字字符,如图形符号或ASCII码
  • {
  • chinese = this.conversionStr(chinese, "ISO8859-1", "GB2312");
  • chinese = chinese.substring(0, 1);
  • }
  • }
  • return chinese;
  • }
  • /**
  • * 字符串编码转换
  • * @param str 要转换编码的字符串
  • * @param charsetName 原来的编码
  • * @param toCharsetName 转换后的编码
  • * @return 经过编码转换后的字符串
  • */
  • private String conversionStr(String str, String charsetName,String toCharsetName) {
  • try {
  • str = new String(str.getBytes(charsetName), toCharsetName);
  • } catch (UnsupportedEncodingException ex) {
  • System.out.println("字符串编码转换异常:" + ex.getMessage());
  • }
  • return str;
  • }
  • public static void main(String[] args) {
  • ChineseCharToEn cte = new ChineseCharToEn();
  • System.out.println("获取拼音首字母:"+ cte.getAllFirstLetter("北京联席办"));
  • }
  • }

博客原文:http://blog.csdn.net/fei1502816/article/details/8446049/

java获取汉字拼音首字母 --转载的更多相关文章

  1. JAVA获取汉字拼音首字母

    package com.common.util; import java.io.UnsupportedEncodingException; /** * 取得给定汉字串的首字母串,即声母串 * Titl ...

  2. C# 获取汉字拼音首字母

    最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精   本节探讨C#获取汉字拼音首字母的方法: 代码类东西, ...

  3. C# 获取汉字拼音首字母/全拼

    最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精   本节探讨C#获取汉字拼音首字母的方法: 代码类东西, ...

  4. php获取汉字拼音首字母的方法

    现实中我们经常看到这样的说明,排名不分先后,按姓名首字母进行排序.这是中国人大多数使用的排序方法.那么在php程序中该如何操作呢? 下面就分享一下在php程序中获取汉字拼音的首字母的方法,在网上搜到的 ...

  5. C/C++ 获取汉字拼音首字母

    #include <stdint.h> #include <stdio.h> #include <ctype.h> #include <string.h> ...

  6. Java 获取汉字串首字母并大写和获取汉字的全拼,英文字符不变

    在开发中我们难免会遇到需要提出汉字中的拼音的首字母.提出汉字的拼音,接着便介绍一个工具类 pinyin4j.jar,首先需要下载 jar 包. Pinyin4j是一个功能强悍的汉语拼音工具包,是sou ...

  7. java获取中文拼音首字母

    import net.sourceforge.pinyin4j.PinyinHelper; public class PinyinHelperUtil { /** * 得到中文首字母(中国 -> ...

  8. qt 获取汉字拼音首字母

    #include "mainwindow.h"#include "ui_mainwindow.h"#include <QDebug>#include ...

  9. php 获取汉字拼音首字母的函数

    function getFirstChar($string){ if($string{0}>="A" and $string{0}<="z" )re ...

随机推荐

  1. html中的rel,rev是什么?

    html中的rel,rev是什么? 这2个标记主要是用于表示文档之间的联系,rel是从源文档到目标文档的关系:rev是从目标文档到源文档的关系 经常用到的属性如下: Alternate - 定义交替出 ...

  2. [转]Hibernate延迟加载与opensessioninviewFilter

    原文地址:http://blog.csdn.net/a19881029/article/details/7916702 hibernate延迟加载: 一个person对应多个school,使用hibe ...

  3. Vue.js之v-if

    ---恢复内容开始--- 首先,在跟着api做的时候,要把v-if包裹在Vue对应的el里面,重要的事情说三遍. html: <div id="vif"> <di ...

  4. Leetcode 377. Combination Sum IV

    Given an integer array with all positive numbers and no duplicates, find the number of possible comb ...

  5. 【caffe】绘制网络结构图

    @tags caffe 网络结构 可视化 当拿到一份网络定义文件net.prototxt,可以用工具画出网络结构.最快速的方法是使用在线工具netscope,粘贴内容后shift+回车就可以看结果了. ...

  6. bzoj 1066 蜥蜴

    最大流. 建图:首先将每根柱子拆成两个点. 每根柱子的入点向出点连一条容量为柱子高度的边. 每根柱子的出点向可以到达的柱子的入点连一条容量为正无穷的边. 源点向每根初始有蜥蜴的柱子的入点连一条容量为一 ...

  7. ASP.NET MVC中viewData、viewBag和templateData的使用与区别

    一:类型比较 1.1)ViewBag是动态类型(dynamic). 1.2)ViewData是一个字典型的(Dictionary)-->ViewDataDictionary. 1.3)TempD ...

  8. PathGradientBrush类进行渐变颜色的填充

    private void Form1_Paint(object sender, PaintEventArgs e) { Graphics g = e.Graphics; GraphicsPath gp ...

  9. 创建16x16二级hash目录

    Hash目录是一种优化文件存储性能的方法.无论是Windows还是Linux,无论是NTFS还是ext4,每个目录下所能容纳的项目数是有限的.并不是不能保存,而是当项目数量过大的时候,会降低文件索引速 ...

  10. bootstrap 水平表单

    <form class="form-horizontal" role="form"> <div class="form-group& ...