`
anhaoy
  • 浏览: 1334 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论
文章列表
获取汉字的拼音码。如:输入 博客 返回: bo ke 不再多废话了。 请看代码。 附件里面是完整代码。 /** * 返回给定字符的汉语拼音,非汉字返回null * @param c * @return */ public static String get(char c) { int i = PinyinResource.find(c); if (i >= 0 && i < pinyinset.length) { return pinyinset[i]; } return null; } ...
Global site tag (gtag.js) - Google Analytics