java获取汉字拼音首字母 --转载
在项目中要更能根据某些查询条件(比如姓名)的首字母作为条件进行查询,比如查一个叫“李晓明”的人,可以输入‘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 声母串
- */
- 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获取汉字拼音首字母 --转载的更多相关文章
- JAVA获取汉字拼音首字母
package com.common.util; import java.io.UnsupportedEncodingException; /** * 取得给定汉字串的首字母串,即声母串 * Titl ...
- C# 获取汉字拼音首字母
最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精 本节探讨C#获取汉字拼音首字母的方法: 代码类东西, ...
- C# 获取汉字拼音首字母/全拼
最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精 本节探讨C#获取汉字拼音首字母的方法: 代码类东西, ...
- php获取汉字拼音首字母的方法
现实中我们经常看到这样的说明,排名不分先后,按姓名首字母进行排序.这是中国人大多数使用的排序方法.那么在php程序中该如何操作呢? 下面就分享一下在php程序中获取汉字拼音的首字母的方法,在网上搜到的 ...
- C/C++ 获取汉字拼音首字母
#include <stdint.h> #include <stdio.h> #include <ctype.h> #include <string.h> ...
- Java 获取汉字串首字母并大写和获取汉字的全拼,英文字符不变
在开发中我们难免会遇到需要提出汉字中的拼音的首字母.提出汉字的拼音,接着便介绍一个工具类 pinyin4j.jar,首先需要下载 jar 包. Pinyin4j是一个功能强悍的汉语拼音工具包,是sou ...
- java获取中文拼音首字母
import net.sourceforge.pinyin4j.PinyinHelper; public class PinyinHelperUtil { /** * 得到中文首字母(中国 -> ...
- qt 获取汉字拼音首字母
#include "mainwindow.h"#include "ui_mainwindow.h"#include <QDebug>#include ...
- php 获取汉字拼音首字母的函数
function getFirstChar($string){ if($string{0}>="A" and $string{0}<="z" )re ...
随机推荐
- 简单所以不要忽视,关于\r\n和\n程序员应了解的实际应用
众所周知,\r叫回车符,\n叫换行符. 由于历史原因,windows环境下的换行符是\r\n;(文章最后会稍微解释这个历史原因) linux和html等开源或公开标准中的换行符是\n. 记录这篇笔记的 ...
- jQuery之Ajax--辅助函数
1.这些函数用于辅助完成Ajax任务. 2. jQuery.param()方法:创建一个数组或对象序列化的的字符串,适用于一个URL 地址查询字符串或Ajax请求. 我们可以显示一个对象的查询字 ...
- Java transient关键字使用小记
哎,虽然自己最熟的是Java,但很多Java基础知识都不知道,比如transient关键字以前都没用到过,所以不知道它的作用是什么,今天做笔试题时发现有一题是关于这个的,于是花个时间整理下transi ...
- 入手了[云梯的VPN]--水文
之前写的文章 http://www.cnblogs.com/rollenholt/p/3783084.html 结果很多朋友都说访问不了了,现在重新发一下: 各位看官,这是一篇水文: 在用了一段时间s ...
- C#安全性记录
安全性一直是开发中,重中之重的问题.不过平时用的不算特别多,基本上用个MD5,SSL也就到这了.再次记录一下,以免忘记. MD5多次加密 MD5算法是不可逆算法.应用于密码验证,完整性验证这种特征.这 ...
- (转)为什么所有浏览器的userAgent都带Mozilla
转自:http://www.eamonning.com/blog/view/289 以下是全文 最早的时候有一个浏览器叫NCSA Mosaic,把自己标称为NCSA_Mosaic/2.0 (Windo ...
- margin双边距的问题
margin:20px;height:20px;float:left margin:20px;height:20px;float:left
- ExtJs 实现表单联动
最近做的项目使用Extjs.遇到表单联动的业务.下面来说说主要实现思想: 说明:表单联动一般存在从属关系,有大范围的对象和大范围中的小对象.比如地理位置的选定(例:浙江省-杭州市-某某县).在这里,我 ...
- Android之自定义属性
有些时候会觉得Android中提供的控件不能满足项目的要求,所以就会常常去自定义控件.自定义控件就不免会自定义属性.自定义属性大致需要三个步骤:在XML文件中定义自定义属性的名称和数据类型.在布局中调 ...
- JS中数组Array的用法{转载}
js数组元素的添加和删除一直比较迷惑,今天终于找到详细说明的资料了,先给个我测试的代码^-^var arr = new Array();arr[0] = "aaa";arr[1] ...