• 博客(0)
  • 资源 (3)
  • 问答 (2)

空空如也

oracle函数大全

oracle函数大全

2013-07-18

java获取中文字幕拼音jar包(暂不支持多音字),稍改一下即可获取首拼

事例/** * 得到中文首字母 * * @param str * @return */ public static String getPinYinHeadChar(String str) { String convert = ""; for (int j = 0; j < str.length(); j++) { char word = str.charAt(j); String[] pinyinArray = PinyinHelper.toHanyuPinyinStringArray(word); if (pinyinArray != null) { convert += pinyinArray[0].charAt(0); } else { convert += word; } } return convert.substring(0, 1); }

2013-07-18

Pl/SQL语法大全

写了Oracle几乎所有技术的语法,这是本人自己写的,初学者不下载你会后悔哦!

2012-05-14

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除