Java 获取汉字拼音的方法】的更多相关文章

package lius.util;   import java.io.Serializable; import java.util.ArrayList;   public class JString {     private static ArrayList pinyin = new ArrayList(395);       /**      * 该方法返回一个字符串的拼音,对于要做敏感字      * 检查时应该一个字一个字来获取其拼音以免无法      * 得知每个字对应的拼音.   …
在项目中要更能根据某些查询条件(比如姓名)的首字母作为条件进行查询,比如查一个叫"李晓明"的人,可以输入'lxm'.写了一个工具类如下: import java.io.UnsupportedEncodingException; /** * 取得给定汉字串的首字母串,即声母串 * Title: ChineseCharToEn * @date 2004-02-19 注:只支持GB2312字符集中的汉字 */ public final class ChineseCharToEn { priv…
package com.common.util; import java.io.UnsupportedEncodingException; /** * 取得给定汉字串的首字母串,即声母串 * Title: ChineseCharToEn * @date 注:只支持GB2312字符集中的汉字 */ public final class ChineseCharToEn { private final static int[] li_SecPosValue = { 1601, 1637, 1833,…
现实中我们经常看到这样的说明,排名不分先后,按姓名首字母进行排序.这是中国人大多数使用的排序方法.那么在php程序中该如何操作呢? 下面就分享一下在php程序中获取汉字拼音的首字母的方法,在网上搜到的大多数是有问题的,这个可是经过小编实践应用过的,真的可以使用的哦. //php获取中文字符拼音首字母 function getFirstCharter($str){  if(empty($str)){return '';}  $fchar=ord($str{0});  if($fchar>=ord(…
最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精   本节探讨C#获取汉字拼音首字母的方法: 代码类东西,直接上代码: /// <summary> /// 在指定的字符串列表CnStr中检索符合拼音索引字符串 /// </summary> /// <param name="CnStr">汉字字符串</param> /// <returns&…
C#获取汉字拼音 using System;  using System.Collections.Generic;  using System.Text;  using System.Text.RegularExpressions;    namespace Ctr.Common.Tools  {      /// <summary>       /// 汉字转拼音静态类,包括功能全拼和缩写,方法全部是静态的       /// </summary>      public sta…
最近悟出来一个道理,在这儿分享给大家:学历代表你的过去,能力代表你的现在,学习代表你的将来. 十年河东十年河西,莫欺少年穷 学无止境,精益求精   本节探讨C#获取汉字拼音首字母的方法: 代码类东西,直接上代码: /// <summary> /// 在指定的字符串列表CnStr中检索符合拼音索引字符串 /// </summary> /// <param name="CnStr">汉字字符串</param> /// <returns&…
Java获取各种常用时间方法大全 package cc.javaweb.test; Java中文网,Java获取各种时间大全 import java.text.DateFormat; import java.text.ParsePosition; import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; import java.util.GregorianCalendar; publi…
参考文章:http://blog.csdn.net/thenile/article/details/6318521 在参考文章的基础上,去掉了代码中C++特有的语法和数据类型,用纯C语言实现了获取汉字拼音的功能,使得代码在纯C项目中也能使用. 编码格式: gbk 测试字符串: const char* szChinese = "中华人民共和国 People's Republic of China"; 测试结果: ZhongHuaRenMinGongHeGuo People's Repub…
#include <stdint.h> #include <stdio.h> #include <ctype.h> #include <string.h> bool between(uint32_t start,uint32_t end,uint32_t aim); char get_first_letter(wchar_t wchar); void get_first_letters(const char *szChinese,char piyinBuf[…