`

获取汉字的首字母

 
阅读更多

2. [代码]配置文件    

01 <?xml version="1.0" encoding="utf-8"?>
02 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
03     android:orientation="vertical"
04     android:layout_width="fill_parent"
05     android:layout_height="fill_parent"
06     >
07   <EditText
08    android:layout_width="fill_parent"
09    android:layout_height="wrap_content"
10    android:id="@+id/edit"
11    android:hint="输入汉字"
12    ></EditText>
13    <Button
14     android:layout_width="fill_parent"
15     android:layout_height="wrap_content"
16     android:id="@+id/button"
17     android:text="@string/button"
18     ></Button>
19     <TextView
20      android:id="@+id/textView"
21      android:layout_width="fill_parent"
22      android:layout_height="wrap_content"
23      android:textColor="@color/white"
24      ></TextView>
25 </LinearLayout>

3. [代码]Java代码    

01 package com.android.antking.getspell;
02 import java.io.UnsupportedEncodingException;
03  
04 import android.app.Activity;
05 import android.os.Bundle;
06 import android.view.View;
07 import android.widget.Button;
08 import android.widget.EditText;
09 import android.widget.TextView;
10 import android.widget.Toast;
11 public class MainActivity extends Activity {
12     static final int GB_SP_DIFF=160;
13     // 存放国标一级汉字不同读音的起始区位码
14

    static final int[] secPosValueList = { 1601, 1637, 1833, 2078, 2274, 2302, 2433,

2594, 2787, 3106, 3212,

15      3472, 3635, 3722, 3730, 3858, 4027, 4086, 4390, 4558, 4684, 4925,
16         5249, 5600 };
17     // 存放国标一级汉字不同读音的起始区位码对应读音
18

    static final char[] firstLetter = { 'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'j', 'k', 'l', 'm',

'n', 'o', 'p', 'q', 'r', 's', 't', 'w', 'x', 'y', 'z' };

19     private EditText edit;
20     private TextView text;
21     private Button button;
22     /** Called when the activity is first created. */
23     @Override
24     public void onCreate(Bundle savedInstanceState) {
25         super.onCreate(savedInstanceState);
26         setContentView(R.layout.main);
27         edit = (EditText)this.findViewById(R.id.edit);
28         text = (TextView)this.findViewById(R.id.textView);
29         button = (Button)this.findViewById(R.id.button);
30         button.setOnClickListener(buttonListener);
31         text.setText("拼音");
32     }
33     private View.OnClickListener buttonListener = new View.OnClickListener() {
34          
35         @Override
36         public void onClick(View v) {
37             // TODO Auto-generated method stub
38             if(v==button){
39                 String characters = edit.getText().toString();
40                 String spells = getSpells(characters);
41                 text.setText(spells);
42             }
43         }
44     };
45      
46     public static String getSpells(String characters){
47         StringBuffer buffer = new StringBuffer();
48         for(int i=0;i<characters.length();i++){
49              
50             char ch = characters.charAt(i);
51             if((ch>>7)==0){
52                 //判断是否为汉字,如果左移7为为0就不是汉字,否则是汉字
53             }else{
54             char spell = getFirstLetter(ch);
55             buffer.append(String.valueOf(spell));
56             }
57         }
58         return buffer.toString();
59     }
60     // 获取一个汉字的首字母
61     public static Character getFirstLetter(char ch) {
62           
63         byte[] uniCode = null;
64         try {
65             uniCode = String.valueOf(ch).getBytes("GBK");
66         } catch (UnsupportedEncodingException e) {
67             e.printStackTrace();
68             return null;
69         }
70         if (uniCode[0] < 128 && uniCode[0] > 0) { // 非汉字
71             return null;
72         } else {
73             return convert(uniCode);
74         }
75     }
76     /**
77      * 获取一个汉字的拼音首字母。 GB码两个字节分别减去160,转换成10进制码组合就可以得到区位码
78      * 例如汉字“你”的GB码是0xC4/0xE3,分别减去0xA0(160)就是0x24/0x43
79      * 0x24转成10进制就是36,0x43是67,那么它的区位码就是3667,在对照表中读音为‘n’
80      */
81     static char convert(byte[] bytes) {
82         char result = '-';
83         int secPosValue = 0;
84         int i;
85         for (i = 0; i < bytes.length; i++) {
86             bytes[i] -= GB_SP_DIFF;
87         }
88         secPosValue = bytes[0] * 100 + bytes[1];
89         for (i = 0; i < 23; i++) {
90             if (secPosValue >= secPosValueList[i] && secPosValue < secPosValueList[i + 1]) {
91                 result = firstLetter[i];
92                 break;
93             }
94         }
95         return result;
96     }
97 }
分享到:
评论

相关推荐

    用来获取汉字首字母的jar包

    这个"用来获取汉字首字母的jar包"显然提供了一个解决方案,它能够帮助我们快速地将汉字转换为对应的拼音首字母,从而实现基于拼音首字母的查询功能。 首先,我们要理解汉字到拼音转换的基本概念。在中国,每个汉字...

    c# 获取汉字首字母(含多音字)

    // 获取汉字的拼音列表 foreach (var pinyin in pinyinList) { var firstLetter = pinyin.Substring(0, 1); // 提取首字母 firstLetters.Add(firstLetter); } } return firstLetters; } ``` 在这个例子中...

    使用javascript获取汉字首字母

    标题中的“使用javascript获取汉字首字母”指的是在JavaScript编程环境下,通过特定的算法或方法来获取汉字字符的拼音首字母。这种方法通常用于实现中文字符的排序、搜索优化或其他需要基于拼音处理汉字的场景。 在...

    C# 获取汉字首字母

    ### C# 中获取汉字首字母的方法 在许多应用程序中,我们常常需要对数据进行排序或检索,特别是当涉及到中文字符时。例如,在通讯录应用中,我们可能希望根据联系人的姓名首字母进行快速查找。为了实现这样的功能,...

    获取汉字首字母

    在IT行业中,尤其是在前端开发和文本处理领域,获取汉字首字母是一项常见的需求。这主要用在拼音检索、关键词提取、数据分析等多种场景。标题中的“获取汉字首字母”指的是编写一个程序或函数,能够将汉字转化为对应...

    获取汉字首字母,根据汉字获取首字母。

    获取汉字首字母,//获得字符串拼音首字母 public static string GetStrletter(string DWletter) { string Strletter = GetChineseSpell(DWletter); return Strletter; }

    js 获取汉字首字母

    在JavaScript编程中,获取汉字的首字母是一项常见的需求,特别是在数据排序、拼音检索或构建关键词索引时。这篇博文“js 获取汉字首字母”提供了一种实现方式,它可能涉及到了字符串处理和字符编码的知识。下面我们...

    汉字转拼音及获取首字母

    在IT行业中,尤其是在开发中文应用时,汉字转拼音和获取首字母是常见的需求。这个示例程序正是针对这一需求而设计的,适用于iOS平台。在iOS应用开发中,可能需要处理用户输入的汉字,将其转化为拼音,以便进行关键词...

    js获取汉字首字母

    使用wf.makyPy("可以得倒首字母"),需要jquery

    php 获取中文首字母

    php 获取中文首字母 详细调用请参考附件内说明.

    自动获取汉字首字母

    本项目“自动获取汉字首字母”是使用C#语言实现的一个Windows Forms应用程序,它能帮助用户快速、自动化地获取输入汉字的首字母,从而提高工作效率,减少人为错误。 C#是一种由微软开发的面向对象的编程语言,它...

    pb-获取汉字首字母函数

    标题中的“pb-获取汉字首字母函数”指的是在PowerBuilder(PB)开发环境中实现的一个功能,该功能允许程序获取汉字字符的首字母。这在处理大量汉字数据时非常有用,例如进行拼音排序、搜索或者创建索引。在中文环境...

    JS实现获取汉字首字母拼音、全拼音及混拼音的方法

    本文将介绍如何使用JavaScript实现获取汉字首字母拼音、全拼音以及混拼音的方法。 首先,要实现这些功能,我们需要一个能将汉字转换为拼音的JavaScript插件。在提供的示例中,使用了一个名为`ChinesePY.js`的插件,...

    PHP获取中文首字母

    PHP的获取中文首字母的类,可直接用与自己的项目中

    delphi获取汉字首字母

    在Delphi编程环境中,获取汉字首字母是一项常见的需求,特别是在处理中文数据时,例如进行拼音排序或者构建基于拼音的搜索功能。Delphi7是一个经典的版本,尽管现在已经有一些更新的版本,但Delphi7的语法和核心特性...

    数据库获取中文首字母自定义函数(字母查汉字模糊查询)

    标题“数据库获取中文首字母自定义函数(字母查汉字模糊查询)”指的是在数据库系统中定义一个函数,该函数能接受用户输入的英文首字母,然后返回所有以该首字母为拼音首字母的中文字段。这种功能对于具有大量中文...

    Qt提取汉字拼音首字母

    在本项目"Qt提取汉字拼音首字母"中,我们将探讨如何利用Qt来处理汉字与拼音之间的转换,特别是在获取汉字的拼音首字母方面。 首先,我们需要理解汉字与拼音的关系。汉字是中文的主要书写系统,而拼音是用拉丁字母来...

Global site tag (gtag.js) - Google Analytics